webpack中使用wowjs和animate.css

Posted 南瓜壳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack中使用wowjs和animate.css相关的知识,希望对你有一定的参考价值。

animate.css 是一个来自国外的 CSS3 动画库,它预设了抖动(shake)、闪烁(flash)、弹跳(bounce)、翻转(flip)、旋转(rotateIn/rotateOut)、淡入淡出(fadeIn/fadeOut)等多达 60 多种动画效果,几乎包含了所有常见的动画效果。

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

WOW.js可以在页面向下滚动的过程中播放这些动画效果,还可以为动画设置喜欢的风格、延迟、长度、偏移和迭代等。
官网:http://mynameismatthieu.com/WOW
github:https://github.com/matthieua/WOW

在webpack中使用也很简单,按如下步骤操作即可:
1.首先使用npm安装wowjs
npm install wowjs --save-dev
animate.css会自动安装。
2.在js文件中添加如下代码

import ‘animate.css‘
import {WOW} from ‘wowjs‘;
new WOW({live: false}).init();

 

简书安装链接   https://www.jianshu.com/p/d715831505ce







以上是关于webpack中使用wowjs和animate.css的主要内容,如果未能解决你的问题,请参考以下文章

vue中动态数据使用wowjs显示动画

WOWJS+animate滚动特效

WOWJS+animate滚动特效

Animsition 和 Wow JS

如何在 React 和 Webpack 中使用 Jest

使用webpack---安装webpack和webpack-dev-server