###スクロール禁止
$('html *').css('overflow','hidden');
$(window).on('touchmove.noScroll', function(e) {
e.preventDefault();
});
###解除
$('html *').css('overflow','visible');
$(window).off('.noScroll');
できました。スマホ対応です。
Go to list of users who liked
More than 3 years have passed since last update.
###スクロール禁止
$('html *').css('overflow','hidden');
$(window).on('touchmove.noScroll', function(e) {
e.preventDefault();
});
###解除
$('html *').css('overflow','visible');
$(window).off('.noScroll');
できました。スマホ対応です。
Register as a new user and use Qiita more conveniently
Go to list of users who liked