html5默认允许用户缩放页面,如果需要禁止缩放,我们需要将user-scalabel=0设置下。
具体代码如下:
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
注意:meta在head里。