0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Webアプリにトラックパッド操作を実装した際にChromeのブラウザバックとバッティングする問題の解決策

Posted at

とあるwebアプリを作っていた時に困ったことで、アプリ内でトラックパッド2本指でスクロールする操作を実装したところ、chromeのブラウザバックが被ってしまうという非常にUX体験が損なわれる事態に陥った。

解決法は以下。Googleスプレッドシートのソースコード見てたらこんな実装をしていたので真似させてもらった。

index.css
html {
  overflow: hidden;
  overscroll-behavior-x: none;
}
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?