LoginSignup
0
0

More than 5 years have passed since last update.

タブレット版は、もう画面幅固定にする

Last updated at Posted at 2018-12-03

タブレット版は、もう画面幅固定にして、取り急ぎ対応させていただく際のviewport切り替え。
タブレット版を仮に1060pxにして画面幅を固定にします。

var ua = navigator.userAgent;
if((ua.indexOf('iPhone') > 0) || ua.indexOf('iPod') > 0 || (ua.indexOf('Android') > 0 && ua.indexOf('Mobile') > 0)){
    document.write('<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">');
} else {
    document.write('<meta name="viewport" content="width=1060">');
}

まとめ

とても楽!!!

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