首页 > Web开发 > 详细

vue-引入animate-css 动画

时间:2021-05-25 15:34:52      阅读:14      评论:0      收藏:0      [点我收藏+]
<template>
  <div class="hello">
    <button @click="show = !show">切换</button>
    <P>-----------------------</P>
    <transition 
      name="bounce"
      enter-active-class="animated rotateIn"
      leave-active-class="animated zoomOutUp"
      :duration="{enter:2000,leave:1000}"
      > 
        <img :src="pic1" v-show="show" >
    </transition>  

  </div>
</template>

<script>
import pic1 from ‘../assets/logo.png‘
export default {
  name: ‘TransitionAndAnimateThree‘,
  data() {
   return {
       show: true,
       pic1:pic1
   }
  }
}
</script>

 <style scoped> 
   @import url("https://cdn.jsdelivr.net/npm/animate.css@3.5.1");
</style>

vue-引入animate-css 动画

原文:https://www.cnblogs.com/eric-share/p/14807928.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!