-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.32 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>谪仙平台</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #4a90e2, #50e3c2); /* 渐变色背景 */
color: white;
font-family: Arial, sans-serif;
}
.logo {
width: 150px; /* 根据需要调整logo大小 */
margin-bottom: 20px;
}
.download-button {
background-color: #ffffff;
color: #4a90e2;
text-decoration: none;
padding: 15px 30px;
font-size: 18px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
.download-button:hover {
background-color: #4a90e2;
color: white;
}
</style>
</head>
<body>
<img src="icon.png" alt="应用Logo" class="logo">
<a href="itms-services://?action=download-manifest&url=https://mynamecool.github.io/testplist/ceshi.plist"
class="download-button">点击安装应用</a>
</body>
</html>