[iOS] body 스크롤 막기
.scrollOff{position:fixed;overflow:hidden;height:100%;}
// body 스크롤 막음
function scrollOff(){
$('body').addClass('scrollOff').on('scroll touchmove mousewheel', function(e){
e.preventDefault();
});
}
// body 스크롤 풀기
function scrollOn(){
$('body').removeClass('scrollOff').off('scroll touchmove mousewheel');
}
지인에게 받은 팁...iOS때문에 여러사람들 고생하네...
// body 스크롤 막음
function scrollOff(){
$('body').addClass('scrollOff').on('scroll touchmove mousewheel', function(e){
e.preventDefault();
});
}
// body 스크롤 풀기
function scrollOn(){
$('body').removeClass('scrollOff').off('scroll touchmove mousewheel');
}
지인에게 받은 팁...iOS때문에 여러사람들 고생하네...
댓글
댓글 쓰기