html 如何禁用在移动的视图中放大或缩小网页?

oxiaedzo  于 2022-12-09  发布在  其他
关注(0)|答案(2)|浏览(162)

我已经使用了viewport meta标签来适应移动的视图的网页。但是现在我想禁用网页的放大或缩小。

jv2fixgn

jv2fixgn1#

尝试使用以下方法:

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

但我认为你的问题与此重复:
How can I "disable" zoom on a mobile web page?

eagi6jfj

eagi6jfj2#

<header>
 <meta name="viewport" content="user-scalable=no">
</header>

2022:一个纯粹的"user-scalable=no"就足够了,排除其他宽度和比例参数应该可以满足你的情况。在我的情况下,我只是简单地添加了片段。在iOS 16上测试。

相关问题