关于 Vue 引用 animate.css 动画 不起作用的问题(版本兼容性)神坑
2021-01-21 19:13
标签:type 创建 isp cdn vue flag close 兼容 view 1. Vue 官网引用的是 animate.css 3.5 版本 2. 不能引用 animate.css 最新版本 例如:(4.0) 3. vue 和 animate.css 版本兼容性问题导致动画不起作用 关于 Vue 引用 animate.css 动画 不起作用的问题(版本兼容性)神坑 标签:type 创建 isp cdn vue flag close 兼容 view 原文地址:https://www.cnblogs.com/cntian/p/13292041.htmllink href="https://cdn.jsdelivr.net/npm/animate.css@3.5.1" rel="stylesheet" type="text/css">
link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css" />
body>
div id="app">
input type="button" value="toggle" @click="flag=!flag">
transition enter-active-class="animated bounceIn"
leave-active-class="animated bounceOut"
:duration="200">
h3 v-show="flag">这是一个h3h3>
transition>
div>
script>
// 创建 Vue 实例,得到 ViewModel
var vm = new Vue({
el: "#app",
data: {
flag: false
},
methods: {
},
})
script>
body>
文章标题:关于 Vue 引用 animate.css 动画 不起作用的问题(版本兼容性)神坑
文章链接:http://soscw.com/index.php/essay/45101.html