vue 使用第三方animate css动画

animate css官网: https://daneden.github.io/animate.css/


<html>
<head>
	<title>title>
   
   <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
   
   <link href="https://cdn.bootcss.com/animate.css/3.7.0/animate.min.css" rel="stylesheet">
head>
<body>
	
<transition enter-active-class="bounceIn" leave-active-class="bounceOut" :duration="{ enter:200, leave:400 }"> <h3 v-show="flag" class="animated" >this is the word;h3> transition> div> <script type="text/javascript"> var vue = new Vue({ el:"#app", data:{ flag:false } }); script> body> html>

你可能感兴趣的:(vue)