hello everyone i would like to add smooth scroll to my website
web url https://7kingdomsbar.myshopify.com/
password : godgod291
thank you please reach out
hello everyone i would like to add smooth scroll to my website
web url https://7kingdomsbar.myshopify.com/
password : godgod291
thank you please reach out
The basic smooth scroll with anchors would work as shown below - since Jumpstart has jQuery I used that for brevity. Also, see my Codepen for a demo.
$(document).ready(function() {
$('.smooth-scroll').on('click', function(evt) {
evt.preventDefault();
$('html, body').animate(
{ scrollTop: $($(this).attr('href')).offset().top},
300
);
});
});
Where you put that in your theme and what elements you decide to smooth scroll is up to you.
Best wishes!
@dmwwebartisan how can i add this to my entire website ?