uni-app 中使用了 animate.css 动画库, 在 H5 端一切正常, 在微信小程序中无效, 请教一下应该怎么处理?
已经在 App.vue 文件中将引入的路径改为绝对路径, 如下所示:
/*每个页面公共 css */
@import '/common/animate.css';
添加动画效果的按钮:
<button type="default" class="btn animateanimated animatepulse animate__infinite" @click="btn_click" >{{btn_text}}
1
noe132 2021-02-02 08:01:41 +08:00
小程序不是 web,可能有些 css 并不支持
|
2
tanranran 2021-02-02 09:41:40 +08:00
你路径引用错了
|
3
tanranran 2021-02-02 09:41:59 +08:00
可以在小程序开发者工具中看下样式到底有没有生效
|
4
Jaosn 2021-02-02 10:34:12 +08:00
有些不支持的
|