LoginSignup
1
0

More than 5 years have passed since last update.

windows8でスクロール中でもピンチインなどで行う拡大を禁止する

Posted at

スマホのスクロール時の拡大を止めるにはメタタグとcssでなんとかなった経験がある。

<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
body {
  -webkit-text-size-adjust: 100%;
}

でもwindows8では上記のメタタグは効かない。

なので公式サイトを見てみると、今回の事象用に便利なcssプロパティが用意されていた

https://msdn.microsoft.com/ja-jp/library/hh920761.aspx

body {
-ms-content-zooming:none;
}

これだとスクロール中にピンチインされても拡大されなくなった。ハマったのでメモしておきます。

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