scroll animation javascript code example
Example 1: how to smooth scroll in javascript
window.scrollTo({ top: 900, behavior: 'smooth' })
Example 2: aos js
CSS
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
JS
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
INITIALIZE AOS:
<script>
AOS.init();
</script>
Example 3: aos css animation
<div data-aos="zoom-in-left"></div>
Example 4: js scroll library
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
Example 5: js scroll library
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>