// [2022.05.11] 마우스 휠 좌,우 이동
$("#mouse_move").on('mousewheel',function(e){
event.stopPropagation()
event.stopImmediatePropagation()
var wheelDelta = e.originalEvent.wheelDelta;
if(wheelDelta > 0){
$(this).scrollLeft(-wheelDelta + $(this).scrollLeft());
}else{
$(this).scrollLeft(-wheelDelta + $(this).scrollLeft());
}
// 외부 스크롤 이벤트 막기
return false;
});
'문제와 해결 > 자바스크립트' 카테고리의 다른 글
객체지향 프로그래밍 - 객체와함수,call,bind (0) | 2021.10.25 |
---|---|
엔터키 이벤트가 먼저 실행이 안될때 (0) | 2021.08.03 |
breadcrumbs 만들기 (0) | 2021.08.02 |
리턴값이 함수일 때 주의점 (0) | 2021.07.06 |
이벤트 (0) | 2021.05.13 |