Skip to content

Instantly share code, notes, and snippets.

@RuslanAsadov
Last active October 14, 2020 17:49
Show Gist options
  • Save RuslanAsadov/e8c85577769a44e15d677f1302056ec0 to your computer and use it in GitHub Desktop.
Save RuslanAsadov/e8c85577769a44e15d677f1302056ec0 to your computer and use it in GitHub Desktop.
slowscroll.js
//start slowScroll
function slowScroll(id) {
if (!$(id).length) {
return
}
var offset = 0
$('html, body').animate(
{
scrollTop: $(id).offset().top - offset,
},
500
)
return false
}
//close slowScroll
//slowScroll($(this).find('a').attr('href'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment