-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3-适配-vw.html
72 lines (70 loc) · 1.78 KB
/
3-适配-vw.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script>
(function () {
var metaEl = document.createElement('meta');
var scale = devicePixelRatio;
metaEl.setAttribute('name', 'viewport');
metaEl.setAttribute('content', 'initial-scale=' + (1 / scale) + ', maximum-scale=' + (1 / scale) + ', minimum-scale=' + (1 / scale) + ', user-scalable=no');
document.documentElement.firstElementChild.appendChild(metaEl);
})();
</script>
<title>Document</title>
<!--
比例单位: vw: 100vw = 1屏幕宽度
-->
<style>
body {
margin: 0;
}
#box {
display: flex;
}
#box div{
width: 46.4vw;
height: 24vw;
background: red;
font-size: 5vw;
}
#box div:nth-of-type(1) {
margin: 0 2.133vw 0 2.667vw;
}
nav {
display: flex;
}
nav a {
margin: 0 4px;
font-size: 3.2vw;
text-decoration: none;
color: red;
}
/*
min-width
max-width <=
*/
@media all and (max-width:640px) {
nav a {
color: green;
}
}
</style>
</head>
<body>
<div id="box">
<div>尖货抽签</div>
<div>新品日历</div>
</div>
<nav>
<a href="#">文字-1</a>
<a href="#">文字-2</a>
<a href="#">文字-3</a>
<a href="#">文字-4</a>
<a href="#">文字-5</a>
<a href="#">文字-6</a>
<a href="#">文字-7</a>
</nav>
</body>
</html>