🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

scrollDirection is a jQuery plugin that tracks the scroll direction and executes corresponding functions as the scroll up/down events are completely finished.

scrolling

Documentation

JS ScrollDirection v1.1.0

Jquery Plugin para detectar scrollup y scrolldown.

Ver un ejemplo.

  • Es necesario jQuery.

Se puede utilizar por ejemplo para ocultar una barra superior cuando se hace scrolldown y luego volver a mostrarla cuando se hace scrolldown.

jQuery(document).onScrollDown(function() { 	console.log('scrolldown'); });  jQuery(document).onScrollUp(function() { 	console.log('scrollup'); });  jQuery(document).scrollDirection(function(dir) { 	console.log(dir); });

You May Also Like