Vue学习笔记【19】——Vue中的动画(使用第三方 CSS 动画库)

  1. 导入动画类库:

 <link rel="stylesheet" type="text/css" href="./lib/animate.css">
  1. 定义 transition 及属性:

 <transition
  enter-active-class="fadeInRight"
    leave-active-class="fadeOutRight"
    :duration="{ enter: 500, leave: 800 }">
  <div class="animated" v-show="isshow">动画哦</div>
 </transition>

猜你喜欢

转载自www.cnblogs.com/superjishere/p/11921223.html