Last active
August 7, 2016 18:29
-
-
Save zaurmag/3d37e7008b2ceec2c8bf79d54006c0b6 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 Anchor ======= | |
$(".arrow-go-down").click(function() { | |
$("html, body").animate({ | |
scrollTop: $($(this).attr("href")).offset().top + "px" | |
}, { | |
duration: 500 | |
}); | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment