aos library slow animation angular

Solutions on MaxInterview for aos library slow animation angular by the best coders in the world

showing results for - "aos library slow animation angular"
Cordelia
18 Apr 2017
1$ npm install aos --save
2//In angular.json
3styles: [... "node_modules/<your-site>/aos/dist/aos.css"]
4//In component.ts
5import * as AOS from 'aos';
6
7ngOnInit() {
8    AOS.init();
9 }
10
11//In component.html
12<div data-aos="fade-left"></div>