Created
December 23, 2015 00:59
-
-
Save simon1400/f5b74a1f7e139bb5173e to your computer and use it in GitHub Desktop.
ScrollTop
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
//Плавнаый скрол к нужному элементу | |
$(".your_class_name").click(function() { //при нажатии на какой класс сработает | |
$("html, body").animate({ | |
scrollTop : $(".sec_1").offset().top //к какому класу прийдет | |
}, 800); //скорость перехода | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment