Skip to content

Instantly share code, notes, and snippets.

@mariovalney
Last active August 29, 2015 14:14
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 mariovalney/b3540af42e59b0a6f837 to your computer and use it in GitHub Desktop.
Save mariovalney/b3540af42e59b0a6f837 to your computer and use it in GitHub Desktop.
Evento Scroll de Acordo com a Altura
$(document).on('scroll', function () {
var altura = pageYOffset;
if (altura > 200) {
// Macumba pra quando rolar e passar dos 200px do topo
} else {
// Macumba pra quando rolar e ainda não passar dos 200px do topo
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment