scroll to top jquery smooth code example
Example 1: smooth scroll jquery onclick
$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#myDiv").offset().top
}, 2000);
});
Example 2: smooth scroll to top jquery
window.scrollTo({top: 0, behavior: 'smooth'});
Example 3: smooth scroll css
html {
scroll-behavior: smooth;
}
http:
Example 4: scroll to top jquery
window.scrollTo({top: 0, behavior: 'smooth'});
reference : https:
Example 5: smooth scroll
window.scroll({
top: 2500,
left: 0,
behavior: 'smooth'
});
window.scrollBy({
top: 100,
left: 0,
behavior: 'smooth'
});
document.querySelector('.hello').scrollIntoView({
behavior: 'smooth'
});
Example 6: how to create a smooth effect in javasript
how to create a smooth effect in javascript