728x90
반응형
let ts;
$('#scroll_event').bind('touchstart', function(e){
e.stopPropagation();
ts = e.originalEvent.touches[0].clientY;
});
$('#scroll_event').bind('touchend', function(e){
e.stopPropagation();
var te = e. originalEvent.changedTouches[0].clientY;
if(ts > te + 5){
//스크롤 내릴때
} else if(ts < te - 5){
//스크롤 올릴때
}
});
728x90
반응형
'JS > JQuery' 카테고리의 다른 글
[JS] javascript 비디오 재생 여부 확인 방법 (0) | 2022.10.12 |
---|---|
[jquery] input name값 배열에 넣기 (0) | 2022.09.08 |
[jquery] PC Mobile 체크 (0) | 2022.08.31 |
[jquery] mousewheel 스크롤이 위로올라가는중인지 내려가는지 이벤트 감지 (0) | 2022.08.31 |
[jquery] JSON 문자열을 배열로 변환 jQuery.parseJSON (0) | 2022.08.30 |