1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【JavaScript】pointermoveがタッチ操作でうまく動かない原因と解決方法

Posted at

Webアプリを作っていたときに、Pointerイベントのpointermoveがうまく動かなかったので、その時の原因と解決方法を紹介します。

環境

Windows11のタブレットPCで操作したとき(スマホでは未確認)
ブラウザはMicrosoft Edge

pointermoveはaddEventListenerでやってました

原因

タッチでスワイプ操作すると、ページをスクロールする操作になってしまい、pointermoveが反応しなくなってしまうのが原因でした。
(CSSでoverflow: hiddenを使っていたので気づかなかった)

解決方法

CSSでtouch-actionを使って、要素をスワイプしてもスクロールする操作にならないようにします。

css
{
    touch-action: none;
    
    /*これで、この要素をスワイプしてもスクロールの操作にならなくなります*/
}

参考サイト

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?