version.html
1.44 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>CNLive Control Panel</title>
<style>
.container {
padding-top:200px;
text-align: center;
}
.title {
font-size: 32px;
}
.google-download-button {
margin-top: 20px;
}
.google-download-button button {
width: 138px;
height: 38px;
border: none;
line-height: 38px;
color: white;
border-radius: 6px;
background-color: #188ae2;
}
.qihu-tip {
margin-top: 20px;
}
.qihu-picture {
margin-top: 20px;
}
.qihu-picture img {
width: auto;
height: 300px;
}
</style>
</head>
<body>
<div class="container">
<div class="google-tip title">
推荐使用谷歌浏览器
</div>
<div class="google-download-button">
<button id="google-download">前往下载</button>
</div>
<div class="qihu-tip title">
或者使用360浏览器极速模式
</div>
<div class="qihu-picture">
<img src="https://wjj.ys2.cnliveimg.com/1545983165685.png" alt="">
</div>
</div>
<script>
var btn = document.getElementById('google-download')
btn.onclick = function () {
window.open('https://www.google.cn/chrome')
}
</script>
</body>
</html>