-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathds.html
More file actions
70 lines (69 loc) · 2.34 KB
/
Copy pathds.html
File metadata and controls
70 lines (69 loc) · 2.34 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>评论</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Ubuntu">
<link rel="icon" href="favicon.ico" type="image/x-icon"><!--网站logo-->
<style>
body {
/* 星源样式 */
padding: 0;
margin: 0;
background: url(https://tse3-mm.cn.bing.net/th/id/OIP-C.tHAIAaw4ZNlr4v2ldAkvYwHaHa?rs=1&pid=ImgDetMain) center;
background-attachment: fixed;
background-size: cover;
background-color: #222;
scroll-behavior: smooth;
}
#chat-icon {
position: fixed;
bottom: 15px;
right: 15px;
font-size: 10px; /* 控制图标大小 */
color: #666; /* 图标颜色 */
cursor: pointer;
text-decoration: none;
/* 确保图标精确尺寸 */
width: 10px;
height: 10px;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000; /* 确保在最上层 */
}
/* 悬停效果 */
#chat-icon:hover {
color: #333;
}
h1{
color:white;
text-align:center;
}
</style>
</head>
<body>
<h1 style="font-family: 'Ubuntu', serif;">等待Giscus响应...</h1>
<script src="https://giscus.app/client.js"
data-repo="mbilse/mbilse.github.io"
data-repo-id="865319029"
data-category="general"
data-category-id="42972713"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="top"
data-theme="preferred_color_scheme"
data-lang="zh-CN"
crossorigin="anonymous"
async>
</script>
<br /><br /><br /><br /><br /><br /><br /><br />
<a href="index.html" id="chat-icon" title="主页">
<span class="material-icons">home</span></a>
</body>
</html>