Skip to content

Instantly share code, notes, and snippets.

@victorbruce
Created July 26, 2019 07:27
Show Gist options
  • Save victorbruce/a1b5f926813668e5a468bb60573b2e88 to your computer and use it in GitHub Desktop.
Save victorbruce/a1b5f926813668e5a468bb60573b2e88 to your computer and use it in GitHub Desktop.
/* Animate Smooth Scroll Snippet */
$('#view-work').on('click', function() {
const images = $('#images').position().top;
$('html, body').animate(
{
scrollTop: images
},
900
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment