简体   繁体   中英

Viewport Android Fit to screen

I'm working on a website (it is not responsive) and I want to fit to screen when I access it from mobile. On iPhone it is ok, it fits. But on android it has zoom to phone resolution or something.

This is my viewport:

<meta name="viewport" content="width=1100">

Not like this:

在此处输入图片说明

在此处输入图片说明

set width to device-width ,So change

<meta name="viewport" content="width=1100">

to

<meta name='viewport' content='width=device-width, initial-scale=1.0 maximum-scale=1.0; minimum-scale=1.0; user-scalable=no;' /> 

You need to adjust the scaling. Reference:
http://developer.android.com/guide/webapps/targeting.html

Also have a look at this:
WebView in Android 4.4 and initial-scale

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM