iPhoneやiPadのMobileSafariでWebアプリなどを作る際、
ページのスクロール(バウンド)にイベントを取られて、
タップイベントが使えない場合の対処方です。
document.ontouchmove = function(event){
event.preventDefault();
}
【動作】
スクロール : しない
バウンド : しない
Go to list of users who liked
More than 5 years have passed since last update.
iPhoneやiPadのMobileSafariでWebアプリなどを作る際、
ページのスクロール(バウンド)にイベントを取られて、
タップイベントが使えない場合の対処方です。
document.ontouchmove = function(event){
event.preventDefault();
}
【動作】
スクロール : しない
バウンド : しない
Register as a new user and use Qiita more conveniently
Go to list of users who liked