-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (72 loc) · 2.63 KB
/
index.html
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
<!DOCTYPE html>
<html lang = "zh-CN">
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>KidsDreaming</title>
<link rel = "stylesheet" href = "./static/index.css">
<link rel = "icon" href = "./static/favicon.ico">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
</head>
<body>
<div id = "kid-avatar">
<img src = "https://s21.ax1x.com/2024/08/17/pACTV4x.jpg" alt = "avatar">
</div>
<div id = "contact-me">
<div class = "dropdown">
<div class = "dropbtn">
<p>Keroid</p>
</div>
<div class = "dropdown-content">
<ul>
<li><a href = "https://weibo.com/u/5533859086"><img src = "./static/weibo.png" border = "0" width = 22px></a>
<li><a href = "https://s21.ax1x.com/2024/08/18/pAP9G34.png"><img src = "./static/QQ.png" width = 20px></a>
<li><a href = "https://9kidalyu.lofter.com"><img src = "./static/lofter.png" width = 20px></a>
</ul>
</div>
</div>
</div>
<div class = "background">
<img src = "https://s21.ax1x.com/2024/08/16/pACtbge.jpg" alt = "background">
</div>
<ul class = "slidding-box">
<li>
<div class="container">
<a id = "a1" href = "./Hilt/index.html">刀柄
<p id = "t1">Hilt</p></a>
<img id = "p1" src="https://s21.ax1x.com/2024/08/23/pAFSRy9.jpg" alt="刀柄">
</div>
</li>
<li>
<div class="container">
<a id = "a2" href="./LostCity/index.html">废城
<p id = "t2">the Lost City</p></a>
<img id = "p2" src="https://s21.ax1x.com/2024/08/23/pAFSjeI.jpg" alt="废城">
</div>
</li>
<li>
<div class="container">
<a id = "a3" href = "./ExperimentalScience/index.html">实验
<p id = "t3">Experimantal Science</p></a>
<img id = "p3" src="https://s21.ax1x.com/2024/08/17/pACHycT.jpg" alt="实验">
</div>
</li>
</ul>
<div class = "bottom">
<div class = "background">
</div>
</div>
<area>
</area>
<script>
$(document).ready(function() {
$('a').click(function(e) {
e.preventDefault();
$('area').toggleClass('move');
// $('.move').toggleClass('move mask');
});
});
</script>
</body>
</html>