-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
157 lines (157 loc) · 5.44 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title>SCUI</title>
<script type="text/javascript">
document.write("<script src='config.js?" + new Date().getTime() + "'><\/script>")
</script>
</head>
<body>
<noscript>
<strong>We're sorry but SCUI doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<script type="text/javascript">
var dark = window.localStorage.getItem('APP_DARK')
if (dark) {
document.documentElement.classList.add('dark')
}
</script>
<div id="app" class="aminui">
<div class="app-loading">
<div class="app-loading__logo">
<img src="/src/assets/img/logo.png" />
</div>
<div class="app-loading__loader"></div>
<div class="app-loading__title">加载中...</div>
</div>
<style>
.app-loading {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #fff;
}
.app-loading__logo {
margin-bottom: 30px;
}
.app-loading__logo img {
width: 90px;
vertical-align: bottom;
}
.app-loading__loader {
box-sizing: border-box;
width: 35px;
height: 35px;
border: 5px solid transparent;
border-top-color: #000;
border-radius: 50%;
animation: 0.5s loader linear infinite;
position: relative;
}
.app-loading__loader:before {
box-sizing: border-box;
content: '';
display: block;
width: inherit;
height: inherit;
position: absolute;
top: -5px;
left: -5px;
border: 5px solid #ccc;
border-radius: 50%;
opacity: 0.5;
}
.app-loading__title {
font-size: 24px;
color: #333;
margin-top: 30px;
}
.dark .app-loading {
background: #222225;
}
.dark .app-loading__loader {
border-top-color: #fff;
}
.dark .app-loading__title {
color: #d0d0d0;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</div>
<!-- built files will be auto injected -->
</body>
<div id="versionCheck" style="display: none; position: absolute; z-index: 99; top: 0; left: 0; right: 0; bottom: 0; padding: 40px; background: rgba(255, 255, 255, 0.9); color: #333">
<h2 style="line-height: 1; margin: 0; font-size: 24px">当前使用的浏览器内核版本过低 :(</h2>
<p style="line-height: 1; margin: 0; font-size: 14px; margin-top: 20px; opacity: 0.8">当前版本:<span id="versionCheck-type">--</span> <span id="versionCheck-version">--</span></p>
<p style="line-height: 1; margin: 0; font-size: 14px; margin-top: 10px; opacity: 0.8">最低版本要求:Chrome 71+、Firefox 65+、Safari 12+、Edge 97+。</p>
<p style="line-height: 1; margin: 0; font-size: 14px; margin-top: 10px; opacity: 0.8">请升级浏览器版本,或更换现代浏览器,如果你使用的是双核浏览器,请切换到极速/高速模式。</p>
</div>
<script type="text/javascript">
function getBrowerInfo() {
var userAgent = window.navigator.userAgent
var browerInfo = {
type: 'unknown',
version: 'unknown',
userAgent: userAgent,
}
if (document.documentMode) {
browerInfo.type = 'IE'
browerInfo.version = document.documentMode + ''
} else if (indexOf(userAgent, 'Firefox')) {
browerInfo.type = 'Firefox'
browerInfo.version = userAgent.match(/Firefox\/([\d.]+)/)[1]
} else if (indexOf(userAgent, 'Opera')) {
browerInfo.type = 'Opera'
browerInfo.version = userAgent.match(/Opera\/([\d.]+)/)[1]
} else if (indexOf(userAgent, 'Edg')) {
browerInfo.type = 'Edg'
browerInfo.version = userAgent.match(/Edg\/([\d.]+)/)[1]
} else if (indexOf(userAgent, 'Chrome')) {
browerInfo.type = 'Chrome'
browerInfo.version = userAgent.match(/Chrome\/([\d.]+)/)[1]
} else if (indexOf(userAgent, 'Safari')) {
browerInfo.type = 'Safari'
browerInfo.version = userAgent.match(/Safari\/([\d.]+)/)[1]
}
return browerInfo
}
function indexOf(userAgent, brower) {
return userAgent.indexOf(brower) > -1
}
function isSatisfyBrower() {
var minVer = {
Chrome: 71,
Firefox: 65,
Safari: 12,
Edg: 97,
IE: 999,
}
var browerInfo = getBrowerInfo()
var materVer = browerInfo.version.split('.')[0]
return materVer >= minVer[browerInfo.type]
}
if (!isSatisfyBrower()) {
document.getElementById('versionCheck').style.display = 'block'
document.getElementById('versionCheck-type').innerHTML = getBrowerInfo().type
document.getElementById('versionCheck-version').innerHTML = getBrowerInfo().version
}
</script>
<script type="module" src="/src/main.js"></script>
</html>