Skip to content

Commit 1225e7a

Browse files
committed
增加作者描述,同时整理代码
1 parent d1e52fa commit 1225e7a

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

404.html

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<title>阿罗娜跟丢了!</title>
66
<meta content="Some ideas for modern button styles and effects" name="description"/>
77
<meta content="button, effect, hover, style, inspiration, web design" name="keywords"/>
8+
<meta content="Bluecraft管理组" name="author">
89
<meta content="Codrops" name="author"/>
910
<script src="js/404jquery.min.js" type="text/javascript"></script>
1011
<script src="js/404jquery.beattext.js" type="text/javascript"></script>

ban-players.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
background-color: initial;
2727
}
2828

29-
.modal{
29+
.modal {
3030
z-index: 100;
3131

3232
padding-top: 25%;
@@ -36,7 +36,7 @@
3636
z-index: 90; /* 确保遮罩层的 z-index 低于模态框 */
3737
}
3838

39-
.ban-list{
39+
.ban-list {
4040
margin-top: 50px;
4141
list-style-type: none;
4242
display: flex;
@@ -45,7 +45,7 @@
4545
white-space: normal;
4646
}
4747

48-
.ban-list li{
48+
.ban-list li {
4949
margin-right: 30px;
5050
margin-bottom: 15px;
5151
padding: 10px 20px;
@@ -103,7 +103,8 @@
103103
<a class="nav-link click-scroll" href="index.html#section_5">服务器类型</a>
104104
</li>
105105
<li class="nav-item">
106-
<span class="ban-player"><a class="nav-link click-scroll" href="ban-players.html">封禁名单</a></span>
106+
<span class="ban-player"><a class="nav-link click-scroll"
107+
href="ban-players.html">封禁名单</a></span>
107108
</li>
108109
</ul>
109110

@@ -115,7 +116,6 @@
115116
</nav>
116117

117118

118-
119119
<div class="container mt-5">
120120
<h2 class="border-bottom">封禁名单</h2>
121121
<ul class="ban-list" id="bannedList">
@@ -124,12 +124,12 @@ <h2 class="border-bottom">封禁名单</h2>
124124
</div>
125125

126126
<!-- 模态框 -->
127-
<div class="modal" id="userModal" tabindex="-1" role="dialog" aria-labelledby="modalLabel" aria-hidden="true">
127+
<div aria-hidden="true" aria-labelledby="modalLabel" class="modal" id="userModal" role="dialog" tabindex="-1">
128128
<div class="modal-dialog" role="document">
129129
<div class="modal-content">
130130
<div class="modal-header">
131131
<h5 class="modal-title" id="modalLabel">被封禁用户信息</h5>
132-
<button type="button" class="btn-close" data-bs-dismiss="modal">
132+
<button class="btn-close" data-bs-dismiss="modal" type="button">
133133
</button>
134134
</div>
135135
<div class="modal-body">
@@ -144,9 +144,9 @@ <h5 class="modal-title" id="modalLabel">被封禁用户信息</h5>
144144
<script>
145145
// 示例数据
146146
const bannedUsers = [
147-
{ name: "用户1", reason: "违规行为", bannedBy: "管理员A" },
148-
{ name: "用户2", reason: "恶意评论", bannedBy: "管理员B" },
149-
{ name: "用户3", reason: "账户盗用", bannedBy: "管理员C" },
147+
{name: "用户1", reason: "违规行为", bannedBy: "管理员A"},
148+
{name: "用户2", reason: "恶意评论", bannedBy: "管理员B"},
149+
{name: "用户3", reason: "账户盗用", bannedBy: "管理员C"},
150150
];
151151

152152
// 生成用户列表

choose.html

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta content="width=device-width, initial-scale=1.0" name="viewport">
6+
<meta content="Bluecraft管理组" name="author">
67
<title>以下三个是服务器主要管理员的B站账号</title>
78
<link href="./images/logo.ico" rel="icon">
89
<link href="css/choose_styles.css" rel="stylesheet">

index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
<nav class="navbar navbar-expand-lg">
6565
<div class="container rounded-5">
6666
<div class="py-3">
67-
<a class="navbar-brand" href="index.html">
68-
<img alt="" class="logo-image" src="./images/BluecraftLogo.svg">
69-
</a>
67+
<a class="navbar-brand" href="index.html">
68+
<img alt="" class="logo-image" src="./images/BluecraftLogo.svg">
69+
</a>
7070
</div>
7171

7272
<a class="btn custom-btn d-lg-none ms-auto me-4"
@@ -100,7 +100,8 @@
100100
<a class="nav-link click-scroll" href="#section_5">服务器类型</a>
101101
</li>
102102
<li class="nav-item">
103-
<span class="ban-player"><a class="nav-link click-scroll" href="ban-players.html">封禁名单</a></span>
103+
<span class="ban-player"><a class="nav-link click-scroll"
104+
href="ban-players.html">封禁名单</a></span>
104105
</li>
105106
</ul>
106107

0 commit comments

Comments
 (0)