Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jpcontrerasv/081c3e382c3983694284 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/081c3e382c3983694284 to your computer and use it in GitHub Desktop.
Si el usuario ha scrolleado cierta cantidad de pixeles
var $document = $(document),
$element = $('#negro'),
className = 'bg-black';
$document.scroll(function() {
if ($document.scrollTop() >= 150) {
// user scrolled 50 pixels or more;
// do stuff
$element.addClass(className);
} else {
$element.removeClass(className);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment