-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (131 loc) · 5.46 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
<title>学生校园通行码领取</title>
<link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<style>
.box{
text-align: center;
}
.img img{
width: 100%;
}
p{
padding: 0;
margin: 0;
font-weight: 500;
}
.wechat img{
width: 50%;
}
</style>
<script type="text/javascript">window.onload = function() {
var lastTouchEnd = 0;
document.addEventListener('touchstart', function(event) {
if (event.touches.length > 1) {
event.preventDefault();
}
});
document.addEventListener('touchend', function(event) {
var now = (new Date()).getTime();
if (now - lastTouchEnd <= 300) {
event.preventDefault();
}
lastTouchEnd = now;
}, false);
document.addEventListener('gesturestart', function(event) {
event.preventDefault();
});
document.addEventListener('dblclick', function (event) {
event.preventDefault();
})
}
</script>
</head>
<body>
<div class="box">
<div class="img" style="width: 100%;">
<a href="https://s1.ax1x.com/2020/06/25/N0y7Yq.jpg" style="width:100%;">
<img src="https://s1.ax1x.com/2020/06/25/N0WSWn.png" alt="a">
<img src="https://s1.ax1x.com/2020/06/25/NBSyrT.jpg" alt="a">
</a>
<!-- <a href="https://www.baidu.com/" style="width: 100%;">
<img src="https://s1.ax1x.com/2020/06/23/NU07Xq.jpg" alt="a">
<img src="https://s1.ax1x.com/2020/06/25/N0WSWn.png" alt="N0WSWn.png" border="0" />
</a> -->
</div>
<!-- <div style="font-size: 30px; width:87%; color:aliceblue; text-align:right; background-color:darkorchid;">
<span>
校园防疫 人人有责
</span>
<p style="font-size: 16px;">
<span style="text-align: right;">
浙江工业大学宣
</span>
</p>
<span style="width: 5%; background-color: aliceblue;">
</span>
</div> -->
<div style="padding:6px;text-indent: 0.35em;">
<span style="font-size: 13px;">
Everyone is responsible for epidemic prevention on campus
</span>
</div>
<div style="padding: 10px;">
<p style="margin-bottom: 10px;">
<span style="font-size: 19px;">
罗惠珍
</span>
<span style="color:darkgreen">
<span style="font-size:19px;">
校园通行码
</span>
</span>
<span style="color:darkgreen">
<span style="font-size:12px;">
Campus Pass Code
</span>
</span>
</p>
<p style="margin-bottom: 2px; padding: 4px;">
<span style="font-size: 19px;">
信息工程学院
<p style="font-size: 18px; font-weight: 400;">
330106199510253317
</p>
</span>
</p>
<p style="margin-top: 10px;">
<span style="font-size: 12px;">
<span style="color:gray">生成时间 Generation time:</span>
<p id="time" style="color:black;margin-top: 8px; font-size: 12px;">
2020-07-15 00:00:00
</p>
</span>
</p>
<p style="margin-top: 10px;">
<span style="font-size: 12px;">
<span style="color:gray">到期时间 Expire Time:</span>
<p id="time" style="color:black;margin-top: 8px; font-size: 12px;">
2020-07-15 23:59:59
</p>
</span>
</p>
<div class="wechat" style="padding: 12px;">
<img src="https://qr.api.cli.im/newqr/create?data=%E7%BD%97%E6%83%A0%E7%8F%8D_2111903085&level=H&transparent=0&bgcolor=%23FFFFFF&forecolor=%233a75ba&blockpixel=12&marginblock=2&logourl=&size=260&logoshape=no&foretype=1&eye_use_fore=1&qrcode_eyes=null&outcolor=%23000000&incolor=%23000000&qr_rotate=0&text=&fontfamily=simsun.ttc&fontsize=30&fontcolor=%23000000&kid=bizcliim&time=1594702251&key=ff131e536a93d3ba6bbcc37ae7477f9f"alt="a">
</div>
<div class="foot" style="text-indent: 1.5em; font-size: 12px; text-align: left; padding: 12px;">
<!-- <img style="width: 100%;" src="https://user.qzone.qq.com/1060139663" alt="a"> -->
<p>
凭此码可在学校朝晖校区、屏峰校区、莫干山校区范围内配合有效证件通行,请主动出示,配合检查。
</p>
<p style="font-family:initial; font-weight:400; font-size: 12px;">
This code can be used to pass with valid documents in the Zhaohui campus, Pingfen campus and Moganshan campus. Please present it actively and cooperate with the inspection.
</p>
</div>
</div>
</div>
</body>
</html>