滾來滾去的 Wheel vs Scroll event
昨天處理一個需求是:「網頁的畫面往上滑時要隱藏頂端選單,往下滑時再顯示選單」
聽起來好像只要偵測滾動方向是吧?好的好的!
於是天真的小白選擇了 wheel 來實作,沒想到這就是錯誤的開始:
$(window).on('wheel', function(event){
if(event.originalEvent.deltaY < 0){
// up
} else {
// down
}
}
...
beareatapple.hashnode.dev1 min read