-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (74 loc) · 2.15 KB
/
index.html
File metadata and controls
77 lines (74 loc) · 2.15 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
72
73
74
75
76
77
<!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: 72px; /* 将高度缩窄至150px */
}
</style>
</head>
<body>
<div class="bg-img"></div>
<header><span>MacroStar Studio 欢迎您!</span></header>
<main>
<div class="centered">
<h1>宏星工作室 | 重新出发,向新前进</h1>
</div>
<div class="centered">
<p>宏星工作室欢迎👏您的到来</p>
</div>
<div class="centered">
<p>宏星工作室致力于打造好玩、实用的产品,敬请期待!</p>
</div>
<div class="centered">
<h2>我们的产品</h2>
<p>Lunar_Bot 4.0 林浅月第四代QQ机器人</p>
<P>Lunar X 林浅月 5.0原生版本(开发中)</P>
<p>Lunar_UI 基于Windows系统的优化版本(开发中)</p>
<p>RuiCraft 鸿瑞服务器 宏星工作室旗下Minecraft服务器</p>
</div>
</main>
<footer>
<p>开发中页面,不代表最终品质</p>
</footer>
</body>
</html>