スクロールイベント 上下方向の判定
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; });