본문 바로가기

JS/JQuery

[jquery] mousewheel 스크롤이 위로올라가는중인지 내려가는지 이벤트 감지

728x90
반응형
  <div class="scroll_area">
    <div class="scroll_box">
      <img src="./img/Vsec1_1.png" alt="" class="scroll_img" data-no="1">
    </div>
  </div>

$(document).on('mousewheel', ".scroll_area", function(e){
let wheel = e.originalEvent.wheelDelta;
    if(wheel>0){
    //스크롤 올릴때
    } else {
    //스크롤 내릴때
    }
});
728x90
반응형