mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
import AOS from 'aos'
|
|
import { isBrowser } from 'react-notion-x'
|
|
|
|
/**
|
|
* 加载滚动动画
|
|
* https://michalsnik.github.io/aos/
|
|
*/
|
|
export default function AOSAnimation() {
|
|
if (isBrowser) {
|
|
AOS.init()
|
|
}
|
|
}
|