mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
19 lines
502 B
JavaScript
19 lines
502 B
JavaScript
const { loadExternalResource } = require('../utils')
|
||
|
||
/**
|
||
* WOWjs动画,结合animate.css使用很方便
|
||
* 是data-aos的平替 aos ≈ wowjs + animate
|
||
*/
|
||
export const loadWowJS = async () => {
|
||
await loadExternalResource('/css/wow/animate.css', 'css')
|
||
await loadExternalResource(
|
||
'https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js',
|
||
'js'
|
||
)
|
||
// 配合animatecss 实现延时滚动动画,和AOS动画相似
|
||
const WOW = window.WOW
|
||
if (WOW) {
|
||
new WOW().init()
|
||
}
|
||
}
|