微信浏览器显示界面补全,如何适配

编写了一个界面,界面地址是

https://www.shippingex.cn/wechat-smart-shipping/html/frontend/html/hangJiaoE/hangJiaoE.html

使用微信浏览访问,显示如下,显示不全

页面代码如下

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>船交e小程序</title>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

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

<meta name="format-detection" content="telephone=no">

<meta name="format-detection" content="email=no">

<meta name="mobile-web-app-capable" content="yes">

<meta name="apple-mobile-web-app-capable" content="yes">

<style type="text/css">

.main-box {

width: 100%;

height: auto;

}

@media only screen and (min-width: 1000px) {

.main-box {

width: 1000px;

margin: 0 auto;

}

}

</style>

</head>

<body>

<div class=".main-box">

<h4>长按图片,识别二维码,进入小程序</h4>

<p>船交e二维码</p>

<img src="https://segmentfault.com/q/1010000023803084/%E8%88%B9%E4%BA%A4e%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%A0%81.jpg" />

</div>

</body>

请问该如何适配显示

回答

少年,网上先学习下屏幕适配的知识吧。

解决代码其中之一:

.main-box img{

max-width: 1000px; /* 图片最大宽度1000px */

width: 80vw; /* 图片宽度占比屏幕宽度80% */

}

如果你希望图片跟随div的宽度的话,再给图片加上宽度就可以了。

.main-box img{

width: 100%;

}

以上是 微信浏览器显示界面补全,如何适配 的全部内容, 来源链接: utcz.com/a/40994.html

回到顶部