Last active
February 21, 2017 14:32
-
-
Save BulatSa/87c293fda5fcda67cda8f170c8a542f3 to your computer and use it in GitHub Desktop.
Прокрутка к секциям с Velocity.js, необходимо его подключить
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
<a href="#" data-anchor="to-section"> | |
<section id="to-section"></section> |
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
/************************************************** | |
Прокрутка к секциям с Velocity.js | |
***************************************************/ | |
$('body a[data-anchor]').click(function (event) { | |
event.preventDefault(); | |
elementClick = "#" + $(this).data("anchor"); | |
destination = $(elementClick).offset().top; | |
$('html').velocity( "scroll", { duration: 1000, easing: "easeInOutCubic", offset: destination, mobileHA: true }); | |
$('body').velocity( "scroll", { duration: 1000, easing: "easeInOutCubic", offset: destination, mobileHA: true }); | |
return false; | |
}); | |
/************************************************** | |
End Прокрутка к секциям | |
***************************************************/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment