vue+ webpack中的animate.css实现的执行多个连续的动画

Posted 百年美

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue+ webpack中的animate.css实现的执行多个连续的动画相关的知识,希望对你有一定的参考价值。

1.安装

npm install animate.css

 

2.使用方法

入口文件App中进行引入 import animate from \'animate.css\'

3.多个连续的动画

 

实现的效果:实现了三个蓝色方块依次以不同效果展现出来。

模板中代码:

  <template>
    <div class="hello">
      <div class="box rotateIn" style="animation-duration:2s;animation-delay:1s;animation-iteration-count:1;animation-fill-mode:both;"></div>
      <div class="box fadeInLeft" style="opacity:0;animation-duration:3s;animation-delay:2s;animation-iteration-count:1;animation-fill-mode:both;">                  </div>
      <div class="box fadeInUp" style="opacity:0;animation-duration:3s;animation-delay:3s;animation-iteration-count:1;animation-fill-mode:both;">                  </div>
           </div>
  </template>

样式表:

<style scoped>
  .box{width:100px;height:80px;background: blue;margin:5px;}
</style>

animate.css代码解析:

animation-duration---动画持续时间

animation-delay---动画延迟时间,多个元素,延迟时间要依次累加

animation-iteration-count---动画执行次数

animation-fill-mode:both---设置对象状态为动画结束或开始的状态

 

ps:还可以写成样式.xxx{animation-duration:2s;animation-delay:4s;animation-fill-mode:both;}

别忘了添加前缀~~

以上是关于vue+ webpack中的animate.css实现的执行多个连续的动画的主要内容,如果未能解决你的问题,请参考以下文章

vue 引用animate.css 怎么引入node-modul 里面的模块

vue使用animate.css

Animate.css 在我的 Vue 3 项目中没有动画

在VUE中使用第三方animate.css

在VUE中使用第三方animate.css

vue中使用animate.css实现动画