-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (80 loc) · 3.01 KB
/
Copy pathindex.html
File metadata and controls
88 lines (80 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oran's Personal Site!!!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="script.js"></script>
<div class="search-bar">
<form action="https://www.bing.com/search" method="get" target="_blank">
<input type="text" name="q" class="search-bar" placeholder="使用 Bing 搜索...">
<button type="submit">搜索</button>
</form>
</div>
<div class="personal-info">
<div class="info-card">
<img src="avatar.jpg" alt="长什么样">
<div class="info">
<h1>Oran</h1>
<p>一个不正经的UP at 2024/3/17</p>
<div class="contact">
<a href="https://space.bilibili.com/1611545322" target="_blank">Bilibili</a>
<a href="mailto:3628813087@qq.com">Email</a>
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=3628813087" target="_blank">QQ</a>
</div>
</div>
</div>
<canvas id="particle-canvas"></canvas>
</div>
<div class="new-card-container">
<div class="new-card">
<div class="moving-snake">
<img id="moving-snake" src="snake-Light.svg" alt="一只可爱的贪吃蛇">
</div>
</div>
</div>
<div class="content">
<div class="music-player">
<div id="player-controls">
<button id="prev-button">
上一首
</button>
<button id="play-button">
播放
</button>
<button id="next-button">
下一首
</button>
</div>
<div id="song-info">
<span id="song-name"></span>
</div>
<audio id="audio-player" src="" preload="metadata"></audio>
</div>
<div class="site-navigation">
<h2>常用网站导航</h2>
<div class="button-group">
<a href="https://www.bilibili.com/" target="_blank" class="glass-btn">Bilibili</a>
<a href="https://github.com/" target="_blank" class="glass-btn">Github</a>
<a href="https://locyanfrp.cn/" target="_blank" class="glass-btn">LocyanFRP | 乐青映射</a>
<a href="https://www.lanzoui.com/" target="_blank" class="glass-btn">Lanzoui | 蓝奏云</a>
</div>
</div>
</div>
<div class="info-panel">
<div id="hitokoto"></div>
<div id="weather">
<span id="city_text"></span>
<span id="wea_text"></span>
<span id="tem_text"></span>
<span id="win_text"></span>
<span id="win_speed"></span>
</div>
<div id="clock"></div>
</div>
<div id="click-effect"></div>
</body>
</html>