加在網頁內容上的CSS動畫效果,使頁面呈現更具變化性。
[前端軍火庫]WOW.js - 動畫很炫,也要看得到才行啊!
官網Github從dist目錄下載wow.js:https://github.com/matthieua/WOW
wow.js引用方法
<!--1.在<head></head>引入此css-->
<head>
<link href="css/animate.css" rel="stylesheet">
</head>
<body>
<!--3.再加上想要的效果-->
<div class="wow bounce">
...
</div>
<div class="wow fadeInUp">
...
</div>
<script src="script/wow.js" type="text/javascript"></script>
<script type="text/javascript">
//2.在</body>前引入此js,並啟動
new WOW().init();
</script>
</body>
補充
wow.js 已改為收費性質,可用AOS來代替。
AOS