Skip to content

Instantly share code, notes, and snippets.

@surjithctly
Created March 4, 2016 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save surjithctly/28fe87e4205b6bbb2eec to your computer and use it in GitHub Desktop.
Save surjithctly/28fe87e4205b6bbb2eec to your computer and use it in GitHub Desktop.
Scroll Reveal Menu JS
/* ================================================
On Scroll Menu
================================================ */
$(window).scroll(function() {
if ($(window).scrollTop() > 600) {
$('.js-reveal-menu').removeClass('reveal-menu-hidden').addClass('reveal-menu-visible');
} else {
$('.js-reveal-menu').removeClass('reveal-menu-visible').addClass('reveal-menu-hidden');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment