49
49

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

スマホでdivスクロールを滑らかに

Posted at

#divタグのスクロールがぎこちない・・・

サイズ指定のdivタグを使って、コンテンツをスクロールさせて表示したいと思ったのだけれど、
慣性スクロール(指を話した後もスクロールしている状態)が働かない。。

最近のスマホUXでは、少しレアなケースですが、使いたいシチュエーションもあるかもしれません。
そんな訳で投稿しておきます。

#対象のdivに、一行のCSSを追加するだけ

div.target-class{
  -webkit-overflow-scrolling: touch;
}

上記を追加するだけで、スクロールが滑らかになります。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?