在移动网络上禁用双指缩放

在移动网络上禁用双指缩放

问题描述:

我要停用移动设备上的捏合和缩放。

I want to disable Pinch and Zoom on Mobile devices.

我应该将哪些配置添加到视口?

What configuration should I add to the viewport ?

链接: http://play.mink7.com/n/dawn/

编辑:由于这种情况不断被评论,我们都知道我们不应该这样做。问题是如何,我不这样做,

Because this keeps getting commented on, we all know that we shouldn't do this. The question was how do I do it, not should I do it.

将此内容添加到您的移动设备设备。然后按百分比设置宽度,就可以了:

Add this into your for mobile devices. Then do your widths in percentages and you'll be fine:

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

为不能使用视口的设备添加此项:

Add this in for devices that can't use viewport too:

<meta name="HandheldFriendly" content="true" />