vue3过渡动画
1、transition定义动画 (html)<transition name="fade" mode="out-in"><router-view class="show"></router-view></transition>2、css中编写.fade-enter-active, .fade-leave-active {//fade-enter-a
·
1、transition定义动画 (html)
<transition name="fade" mode="out-in">
<router-view class="show"></router-view>
</transition>
2、css中编写
.fade-enter-active, .fade-leave-active {
//fade-enter-active:定义进入过渡生效时的状态,fade-leave-active:定义离开过渡生效时的状态
transition: all .5s;
opacity: .2;
}
.fade-enter-to, .fade-leave-to {
//fade-enter-to:2.1.8 版及以上定义进入过渡的结束状态 fade-leave-to:2.1.8 版及以上定义离开过渡的结束状态
transform: translateY(5px);
}
更多推荐
已为社区贡献3条内容
所有评论(0)