Forked from karamanskiy/Скролл к элементу (scroll to element)
Last active
February 3, 2021 22:49
-
-
Save karamansky/b2ffb207209adc5ff591b983898988e2 to your computer and use it in GitHub Desktop.
jQuery: Скролл к элементу
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
// Скролл к элементу | |
$(".menu").on("click","a.scroll", function (e) { | |
e.preventDefault(); | |
var id = $(this).attr('href'), | |
top = $(id).offset().top; | |
$('body,html').animate({scrollTop: top}, 600); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment