Created
March 15, 2017 14:43
-
-
Save mintyPT/08abd014b4041918d19740a32c767d04 to your computer and use it in GitHub Desktop.
Animate scroll with jquery - example
This file contains 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
jQuery('.scroll-to-me').on('click', function(e) { | |
var $this = jQuery(this); | |
jQuery('html, body').animate({ | |
scrollTop: $this.offset().top | |
}, 500); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment