Skip to navigation
How to do the smooth scrolling down effect on one page sites
14.03.16
if(document.getElementById('homepageID')) { jQuery('a[href*="#"]:not([href="#"])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { jQuery('html, body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); }
https://css-tricks.com/snippets/jquery/smooth-scrolling/
Reply
Anonymous
Information Epoch 1740161674
When in doubt, use brute force.
Home
Notebook
Contact us