码迷,mamicode.com
首页 > 其他好文 > 详细

Vue动画

时间:2017-09-07 14:57:31      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:样式   click   效果   class   ext   cal   animation   show   时间   

1.transition动画

<button @click="show = !show">Toggle show</button>
<transition name="bounce">
<p v-if="show" style="text-align: center;">Look at me!</p>
</transition>
css样式
bounce-enter-active, .bounce-leave-active {//动画时间
transition: all .5s
}
.fade-enter, .fade-leave-to {//动画的效果
 transform: translateX(-100%);
opacity: 1;
transform: scale(2);
}

  

 2.animation动画

<button @click="show = !show">Toggle show</button>
<transition name="bounce">
<p v-if="show" style="text-align: center;">Look at me!</p>
</transition>
css样式
bounce-enter-active, .bounce-leave-active {//动画时间
animation: fade-in .5s;
}
  
keyframes fade-in{
0%{
transform: scale(1);
}
50%{
transform: scale(2);
}
100%{
transform: scale(3);
}

  

  

 

Vue动画

标签:样式   click   效果   class   ext   cal   animation   show   时间   

原文地址:http://www.cnblogs.com/LWJ-booke/p/7489324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!