开发者

How to disable multitouch zooming on my mobile web page?

开发者 https://www.devze.com 2023-02-07 15:41 出处:网络
I would like to disable multi开发者_如何学Gotouch on my mobile web site, so that they can\'t zoom it on Mobile Safari, how can I do so?I don\'t think it\'s a good idea to stop the users from zooming i

I would like to disable multi开发者_如何学Gotouch on my mobile web site, so that they can't zoom it on Mobile Safari, how can I do so?


I don't think it's a good idea to stop the users from zooming if they want to (it seems right up there with disabling right-click), but it can be done. To stop zooming, use the viewport meta tag:

<meta name="viewport" 
 content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">

Another way with the viewport meta tag:

<meta name = "viewport" content = "width = 320, 
                                   initial-scale = 2.3, 
                                   user-scalable = no">
0

精彩评论

暂无评论...
验证码 换一张
取 消