vue下animate.css动画效果模板代码

mac2024-06-02  42

<template> <div> <button @click='fadein'>动画淡入效果</button> <button @click='fadeout'>动画淡出效果</button> <div class="song"> <p class="cssw" style="animation-duration: 500ms" >hello</p> <div class="cssw posp" style="animation-duration: 5000ms" > <p>123</p> <h3>oippp</h3> </div> </div> </div> </template> <script> import animated from 'animate.css' export default { data() { return { msg: '' } }, methods:{ fadein:function(){ $('.cssw').removeClass('animated fadeOut') $('.cssw').addClass('animated fadeIn') }, fadeout:function(){ $('.cssw').removeClass('animated fadeIn') $('.cssw').addClass('animated fadeOut') } }, mounted(){ }, computed:{ } } </script> <style scoped> .posp{ background-color: red; height: 400px; width: 400px; } </style>

 

最新回复(0)