Skip to content

Instantly share code, notes, and snippets.

@webgyo
Forked from syuichi-tsuji/gist:ea387588c834bcc23c96
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save webgyo/e8958efffa4453948f8c to your computer and use it in GitHub Desktop.

Select an option

Save webgyo/e8958efffa4453948f8c to your computer and use it in GitHub Desktop.
スクロールイベント 上下方向の判定
var start_pos = 0;
$(window).scroll(function(e){
var current_pos = $(this).scrollTop();
if (current_pos > start_pos) {
console.log('down');
} else {
console.log('up');
}
start_pos = current_pos;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment