-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (111 loc) · 3.84 KB
/
Copy pathindex.html
File metadata and controls
115 lines (111 loc) · 3.84 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LeafLittleSystem</title>
<link rel="stylesheet" href="./css/indexcss.css">
<script src="resource/v0.0.1/iconfont.js"></script>
<script src="js/indexjs.js"></script>
</head>
<body>
<!--动态壁纸-->
<div id="video_background">
<video autoplay loop muted playsinline>
<source src="resource/v0.0.1/Shorekeeper-Blue-Butterfly-4K.mp4">
</video>
</div>
<!--桌面图标-->
<div class="desktop_icon">
<span>
<a href="https://onlinecalculator.cc/zh-hans/scientific" target="_blank">
<!--使用字体图标-->
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-jisuanqi"></use>
</svg>
</a>
</span>
<p class="desktop_p">计算器</p>
</div>
<div class="desktop_icon ">
<span>
<a href="player.html" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-player-fill"></use>
</svg>
</a>
</span>
<p class="desktop_p">播放器</p>
</div>
<div class="desktop_icon">
<span>
<a href="https://onlinenotepad.one/zh" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xitongyunhangdaping"></use>
</svg>
</a>
</span>
<p class="desktop_p">记事本</p>
</div>
<div class="desktop_icon">
<span>
<a href="https://www.bing.com/" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-icon__dakailiulanqi"></use>
</svg>
</a>
</span>
<p class="desktop_p">浏览器</p>
</div>
<div class="desktop_icon">
<span>
<a href="https://aidn.jp/mikutap/" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-chuyinweilai-daxiao"></use>
</svg>
</a>
</span>
<p class="desktop_p">小游戏</p>
</div>
<div class="desktop_icon">
<span>
<a href="https://ys.mihoyo.com/cloud/" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yuanshen-wa"></use>
</svg>
</a>
</span>
<p class="desktop_p">云·原神</p>
</div>
<div class="desktop_icon">
<span>
<a href="setting.html" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-a-shezhi"></use>
</svg>
</a>
</span>
<p class="desktop_p">设置</p>
</div>
<!--开始菜单-->
<div class="startMenu">
<!--<div>包裹,再使用选择器-->
<div class="startMenuContainer">
<span>
<svg class="icon_start" aria-hidden="true">
<use xlink:href="#icon-gengduo"></use>
</svg>
</span>
<div class="startMenuBox">
<h2 style="text-align: center;">当前时间:</h2>
<p style="text-align: center;font-size: 200%;" id="startMenuBoxGetTime">NULL</p>
<script>
//获取时间
var pTimeName = document.getElementById("startMenuBoxGetTime");
pTimeName.innerHTML = getTimeAtStartBox();
</script>
</div>
</div>
</div>
</body>
</html>