在移动web开发过程中,最重要的一点是让web页面在移动端能够正常显示。在PC端浏览网页时,网页页面是很大的,显示在手机上时,会被缩放。为了解决因缩放导致的问题,我们需要在网页中设置viewport。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<!-- ViewPort 只有移动端识别 -->
<!--
设置宽度 width 设置成和设备一样宽度 device-width
设置默认的缩放比 initial-scale
设置是否允许用户自行缩放 user-scale 0/1 NO/YES
-->
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=1">
<title></title>
<style>
body{
margin: 0px;
padding: 0px;
background: red;
}
div{
width: 100%;
margin: 0 auto;
height: 100%;
background: red;
}
</style>
</head>
<body>
<div>
fdsdfsdvcx粉撒个 v 都是 v 的傻傻的哈佛的好地方哥仨给对方更好的方式对凤凰大放送的发挥地方的发挥的发货速度发货速度发货速度发货的饭黄金时代浮华不实上班
</div>
</body>
</html>
关键设置就在上述示例代码中的红色文字。怎么理解Viewport呢?
一句话就是,如果浏览器是照片,那么viewport就是相框