scroll() js code example
Example 1: window.scroll
scroll function
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
window.scroll(x-coord, y-coord)
window.scroll(options)
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: scroll js
window.scroll(x-coord, y-coord)
window.scroll(options)
Example 4: aos animate
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>