-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 2.11 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="yes" name="apple-touch-fullscreen" />
<meta content="telephone=no,email=no" name="format-detection" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<link href="./favicon.png?v=" type="image/ico" rel="shortcut icon" />
<style>
* {
padding: 0;
margin: 0;
}
body {
text-align: center;
}
h3,
h5,
p,
li {
padding: 10px;
}
p {
line-height: 27px;
}
ul,
li {
list-style: none;
}
a {
color: dodgerblue;
}
.color {
color: darkcyan;
}
.color1 {
color: cadetblue;
}
.color2 {
color: #de7f0e;
}
.color3{
color: #157da7;
}
#container {
width: 100px;
height: 100px;
margin: 0 auto;
}
.app {
padding: 20px;
}
</style>
<title>6city 页2018</title>
<script src="./libs/js/qrcode.js"></script>
</head>
<body>
<h3>
🚀 6城 CDN 服务 🚀
</h3>
<div id="container"></div>
<div class="app">
<ul class="ul">
<li>
<a href="0725/" target="_blank">新升级</a>
</li>
</ul>
</div>
</body>
<script>
// var container = document.querySelector('#container');
// var qr = new QRCode(container, {
// width: 200,
// height: 200
// });
// var makeCode = function() {
// var text = window.location.href;
// qr.make(text);
// };
// makeCode();
</script>
</html>