[npm][Angular] AOS - Animate On Scroll Library

**Animate On Scroll **

https://michalsnik.github.io/aos/

1.install aos
npm install aos --save

2.angular.json
加上 styles , scripts

            "styles": [              "src/styles.css",              "node_modules/aos/dist/aos.css"            ],            "scripts": ["node_modules/aos/dist/aos.js"]

3.app.component.ts

  import * as AOS from 'aos';  ngOnInit(): void {    AOS.init();  }

**4.app.component.html
**

<div  data-aos="fade-up" data-aos-delay="1000">  the content</div>

参数:
data-aos >> animation 种类 ( fade-zoom-in,fade-up.....etc )
data-aos-delay >> 延迟 (ms)
..
..
..详请至参考

参考:
AOS
Animate On Scroll Library

https://michalsnik.github.io/aos/

npm -AOS

https://www.npmjs.com/package/aos


关于作者: 网站小编

码农网专注IT技术教程资源分享平台,学习资源下载网站,58码农网包含计算机技术、网站程序源码下载、编程技术论坛、互联网资源下载等产品服务,提供原创、优质、完整内容的专业码农交流分享平台。

热门文章