标签:推荐 version code ade 对象 隐藏 show html hello
有时候没动画
有几次使用vue+animate.css竟然无法做出动画, 原因是vue的动画播放只在v-if或v-show切换显示/隐藏对象时才会触发.
推荐还是可以自己写过渡动画, 方法如下:
html
<transition name="fade"> <p v-if="show">hello</p> </transition>
css
.fade-enter-active, .fade-leave-active { transition: opacity .5s; } .fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ { opacity: 0; }
标签:推荐 version code ade 对象 隐藏 show html hello
原文地址:https://www.cnblogs.com/exkaede/p/12910659.html