-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-plaza.html
More file actions
71 lines (70 loc) · 2.23 KB
/
plugin-plaza.html
File metadata and controls
71 lines (70 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>宏星工作室官方网站</title>
<link rel="stylesheet" href="template">
<style>
.my-button {
background-color: #0e60ca;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border: none;
border-radius: 5px;
text-decoration: none;
}
.my-button:hover {
background-color: #0e60ca;
}
header {
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
background-color: black;
color: white;
}
header span {
display: inline-block;
padding-left: 100%;
animation: headerScroll 20s linear infinite;
}
@keyframes headerScroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 64px; /* 将高度缩窄至150px */
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div class="bg-img"></div>
<header><span>ClassWidgets插件广场欢迎您!</span></header>
<main>
<div class="centered">
<h1 style="text-align: center;">ClassWidgets PluginPlaza</h1>
</div>
<h4 style="text-align: center">欢迎来到 ClassWidgets插件广场镜像站 ,本站提供了 ClassWidgets Plugin的镜像分流</h4>
<p>测试插件</p> <a href="https://github.com/Class-Widgets/plugin-plaza" class="my-button" target="_blank">点我进入GitHub页面</a>
<p>插件描述:这是一个测试插件哦)</p>
</main>
<footer>
<p>© 2024 RinLit 保留大部分权利 · ClassWidgets PluginPlaza · 由宏星工作室创建</p>
</footer>
</body>
</html>