-
Notifications
You must be signed in to change notification settings - Fork 0
/
429.html
83 lines (73 loc) · 2 KB
/
429.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>发生错误</title>
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css"> -->
<style>
body {
background-color: #f8f8f8;
}
* {
margin: 0;
padding: 0;
}
p {
font-family: '微软雅黑';
font-size: 1.5rem;
letter-spacing: 3px;
}
.bak {
width: 80%;
height: 100vh;
margin: auto;
}
.fex {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.cont {
text-align: center;
margin: auto;
overflow: hidden;
}
.contp {
margin-top: 2rem;
}
.blimg {
width: 100%;
max-width: 400px;
}
.conttime {
/* color: #ff3333; */
}
</style>
</head>
<body>
<div class=".container bak">
<div class="row fex">
<div class="row cont">
<img src="https://cdn.jsdelivr.net/gh/LnksGit/jsDelivr-images/img/cfpro/bgn.png" alt="" class="blimg" onmousedown="return false">
<p class="contp" id="autoText">速度太快</p>
<p class="conttime" id="autoText">歇一会再来吧</p>
</div>
</div>
</div>
<script>
let browser = {
versions: function() {
let u = navigator.userAgent;
return {
qq: u.indexOf("QQ") > -1,
wechat: u.indexOf("WeChat") > -1
};
} ()
}
if (browser.versions.qq==true || browser.versions.wechat==true) {
document.getElementById("autoText").innerText = "浏览器不支持"
}
</script>
</body>
</html>