I can scroll to 200px using the following
btn.addEventListener("click", function(){
window.scrollTo(0,200);
})
But I want a smooth scroll effect. How do I do this?
This question is related to
javascript
css
scroll
css-animations
css-transitions
$('html, body').animate({scrollTop:1200},'50');
You can do this!
Source: Stackoverflow.com