Skip to content

Instantly share code, notes, and snippets.

@livercake
Created August 6, 2014 15:57
Show Gist options
  • Save livercake/8a60a127848933d8071f to your computer and use it in GitHub Desktop.
Save livercake/8a60a127848933d8071f to your computer and use it in GitHub Desktop.
Pixels scroll'd trigger (with scrolltop)
var $document = $(document),
$element = $('.description'),
className = 'dark';
$document.scroll(function() {
$element.toggleClass(className, $document.scrollTop() >= 77);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment