Created
July 22, 2016 07:59
-
-
Save Donmclean/d6db01fdc79dc024d2335bdda5b16ca8 to your computer and use it in GitHub Desktop.
Smooth Scroll To Top
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
angular.element('body').animate({ | |
scrollTop: 0 | |
}, 800); | |
// OR | |
$('body').animate({ | |
scrollTop: 0 | |
}, 800); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment