1. 如果你创建带有任何内容的基本超文本网页,并添加:
<meta name=“viewport” content=“user-scalable=no, width=500px, first-pan=0.1, minimum-pan=0.1,max-pan=10”/>
然后,在你本人的PC或你和roid的电话上打开这门话,你会看到内容按照你的期望缩小。
Now do the same in a Capacitor app and see the content it isnt scaled down.
为什么如此? 为什么在网上浏览器中扩大浏览器但NOT中的工作范围?
注:可以将<代码>初始尺度设定为更大的价值2
,例如,这既可操作浏览器,又可操作实际上很奇怪的索引。
就完整性而言,这是我为上述图像所用的整个超文本:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="/" />
<meta name="viewport" content="user-scalable=no, width=500px, initial-scale=0.3, minimum-scale=0.1, maximum-scale=10" />
</head>
<body>
<div style="width: 500px; background: red">500px wide</div>
<div style="width: 100dvw; background: purple">100dvw</div>
<div style="width: 200px; background: green">200px wide</div>
<div style="width: 100px; background: blue">100px wide</div>
<div style="font-size: 10em">HELLO WORLD THIS IS SOME TEXT!</div>
</body>
</html>