-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzhenghuo.html
More file actions
46 lines (45 loc) · 2.12 KB
/
zhenghuo.html
File metadata and controls
46 lines (45 loc) · 2.12 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
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8">
<title>整活区 - yangyang3917的网页</title>
<!-- 引入外部 CSS 文件 -->
<link rel="stylesheet" href="css/notifications.css">
<link rel="stylesheet" href="css/jianbianwenben.css">
<link rel="stylesheet" href="css/background.css">
</head>
<body>
<p>
<span onclick="notification_ClickTitle()" class="jianbianwenben" style="--color-start: #6200ff; --color-end: #0099ff; --font-size: 45px; --font-weight: bold;">欢迎来到yangyang3917的网页</span>
</p>
<p> </p>
<span style="color: #ff0000;font-size: 30px">
当前位置:整活区(<a href="zhenghuo.html">zhenghuo.html</a>)
</span>
<hr style="width: 100%; border: none; border-top: 2px dashed white; margin: 20px auto;"></hr>
<p>
<a href="genshin_start.html" target="_blank" style="color: #22ff00; font-size:25px">原神启动(谨慎点击)</a>
</p>
<hr style="width: 100%; border: none; border-top: 2px dashed white; margin: 20px auto;"></hr>
<p><a href="https://github.com/yangyang3917/yangyang3917.github.io" target="_blank" style="color: #ffff01;font-size:25px">查看源码(点击打开)</a></p>
<p><a href="index.html" style="color: #8400ff;font-size:25px" >返回上一页(点击)</a></p>
<p style="color: #ffffff; font-size: 15px;">powered by <a href="https://docs.github.com/pages" target="_blank"">GitHub Pages</a></p>
<script type="module">
import NotificationManager from './js/notificationManager.js';
window.notification_ClickTitle = () => {
NotificationManager.getInstance().add(
'info',
'提醒',
'你闲的没事点标题干啥……',
{ // 自定义参数
enterDuration: 300, // 进入动画时间
exitDuration: 300, // 退出动画时间
displayDuration: 2000 // 显示时间
}
);
};
</script>
<!-- 引用外部 JS(defer 保证 DOM 加载后执行) -->
<script src="js/background.js" defer></script>
</body>
</html>