vue中使用animate.css库动画和过度动画
程序员文章站
2024-03-25 14:39:16
...
<!DOCTYPE html>
<html>
<head>
<title>vue中使用animate.css库动画和过度动画</title>
<script src="./vue.js"></script>
<link rel="stylesheet" type="text/css" href="./animate.min.css">
<style>
/*// 动画过度*/
.fade-enter,
.fade-leave-to {
opacity: 0;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 3s;
}
</style>
</head>
<body>
<div id='app'>
<!-- // appear 设置初始动画 -->
<!-- // :duration 自定义动画时间 -->
<!-- // type: transition 以 transition动画世界为准-->
<transition
:duration="{enter:5000,leace:10000}"
name="fade"
appear
enter-active-class="animated swing fade-enter-active"
leave-active-class="animated shake fade-leave-active"
appear-active-class="animated swing">
<div v-if="show" >hello world</div>
</transition>
<button @click='handleClick'>切换</button>
</div>
<script>
var vm1 = new Vue({
el: '#app',
data: {
show: true
},
methods: {
handleClick: function() {
this.show = !this.show
}
}
})
</script>
</body>
</html>
上一篇: MySQL学习笔记(练习版)
下一篇: ES7.8 设置 xpack
推荐阅读
-
vue过度动画基础,结合animate.css库使用
-
vue中使用animate.css库动画和过度动画
-
vue使用animate.css动效,并自定义动画时间
-
vue2.0使用animate.css动画,transition&transition-group
-
vue 和animate.css动画使用
-
vue --- > 使用animate.css实现动画
-
常用---vue-cli中使用页面切换库vue-awesome-swiper以及动画库animate.css
-
在Vue.js项目中使用Animate.css类库实现动画
-
css3动画简介以及动画库animate.css的使用_html/css_WEB-ITnose
-
css3动画简介以及动画库animate.css的使用_html/css_WEB-ITnose