모바일 스크롤 이벤트
본문
$("#section1").on("mousewheel DOMMouseScroll scroll touchmove ", function (e) {
var wheelDelta2 = e.originalEvent.wheelDelta;
var sec1_height_val = $("#section1").height();
if (wheelDelta2 > 0) {// 스크롤 위
$('html, body').stop().animate({ scrollTop: 0 }, 300);
} else { // 스크롤 아래
$('html, body').stop().animate({ scrollTop: sec1_height_val }, 300);
}
});
로 구현하는데.. pc는 괜찬은데 모바일은 이미 화면이 넣어가잇다가 갑자기 스크롤 되기도 하고 뭔가 버버대고 오류가잇는데..
모바일에서 스트롤 이동은 어떤 방법으로 해야 좋을지알수 있을까요?
답변 1
$("#section1").on("mousewheel DOMMouseScroll scroll touchmove ", function (e) {
여기에서 touchMove 를 빼야 될거 같은데요
답변을 작성하시기 전에 로그인 해주세요.