Created
July 26, 2019 07:27
-
-
Save victorbruce/a1b5f926813668e5a468bb60573b2e88 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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