animate on scroll

Solutions on MaxInterview for animate on scroll by the best coders in the world

showing results for - "animate on scroll"
Hannah
26 Oct 2019
1CSS
2<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
3
4JS
5<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
6
7INITIALIZE AOS:
8<script>
9  AOS.init();
10</script>
Vicente
02 Jan 2021
1<!---Add script right before closing </body> tag, and initialize AOS:--->
2
3  <script src="https://unpkg.com/aos@next/dist/aos.js"></script>
4  <script>
5    AOS.init();
6  </script>