Created
November 11, 2015 06:56
-
-
Save jdtdesigns/5beea6da8dd49e994ead to your computer and use it in GitHub Desktop.
Smooth Scroll Snippet
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
// <li><a href="target value"></li | |
//<div id="target"></div> | |
$menuButton.on('click', _showSection); | |
function _showSection(e) { | |
e.preventDefault(); | |
var target = $(this).attr('href'); | |
$page.stop().animate({ | |
scrollTop: $(target).offset().top - 70 | |
}, 300); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment