-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (98 loc) · 4.3 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
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
116
117
118
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="renderer" content="webkit">
<title>梦墨's HomePage</title>
<meta name="keywords" content="Homepage">
<meta name="description" content="梦墨's Homepage">
<link rel="icon" type="image/ico" href="./assets/icons/favicon.ico">
<style>
.left {
width: 50%
}
.right {
width: 50%
}
</style>
<link rel="stylesheet" id="style-css" href="./assets/css/style.css" type="text/css" media="all">
<script type="text/javascript" src="./assets/js/jquery.min.js"></script>
<script type="text/javascript" src="./assets/js/js.js"></script>
<!-- 自定义加载进度条 -->
<script src="./assets/js/pace.min.js"></script>
<!-- 自定义鼠标指针 -->
<script defer type="text/javascript" src="./assets/js/mouse.js"></script>
<!-- 网站运行时间 -->
<script>
function show_runtime() {
window.setTimeout("show_runtime()", 1000);
X = new Date("11/12/2021 11:45:14");
Y = new Date();
T = (Y.getTime() - X.getTime());
M = 24 * 60 * 60 * 1000;
a = T / M;
A = Math.floor(a);
b = (a - A) * 24;
B = Math.floor(b);
c = (b - B) * 60;
C = Math.floor((b - B) * 60);
D = Math.floor((c - C) * 60);
runtime_span.innerHTML = "本站已运行: " + A + "天" + B + "小时" + C + "分" + D + "秒"
}
show_runtime();
Date("01/01/2020 11:45:14")
</script>
<!-- 控制台字符画 -->
<script defer type="text/javascript" src="./assets/js/console.js"></script>
<!-- 当前时间 -->
<script src="./assets/js/time.js"></script>
<!-- FontAwesome -->
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.7.2/css/fontawesome.css" rel="stylesheet">
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.7.2/css/fontawesome.min.css" rel="stylesheet">
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.7.2/css/brands.css" rel="stylesheet">
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.7.2/css/solid.css" rel="stylesheet">
</head>
<body class="home blog">
<div class="wrapper">
<section class="left" style="background-image: url('./assets/images/background.jpg');">
</section>
<section class="right">
<div class="index_box">
<div class="index_txt">
<img src="./assets/images/avatar.gif" alt="只是一个普通的头像。">
<h1>梦墨不会做梦💤</h1>
<p>May you do good<br>and not evil.</p>
<div class="location">
<i class="ico_map"></i>
Fujian, China
</div>
<br>
<div class="time">
<i class="ico_time"></i>
<span id="beijingTime"></span>
</div>
<div class="menu">
<a href="https://xlog.dreamo.ink" target="_blank"><i class="fa-solid fa-pen fa-lg"></i></a>
<a href="https://x.com/Dreaminko_" target="_blank"><i class="fa-brands fa-x-twitter fa-lg"></i></a>
<a href="https://t.me/Dreaminko" target="_blank"><i class="fa-brands fa-telegram fa-lg"></i></a>
<a href="https://github.com/Dreamink0" target="_blank"><i class="fa-brands fa-github fa-lg"></i></a>
</div>
</div>
</div>
<footer class="right_foot">
<div class="right_f_l">
<p>
<span>© 2025 <a href="https://icp.gov.moe/?keyword=2020060315"
target="_blank">萌ICP备 2020060315 号</a></span>
<a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener" title="开往-友链接力">/ Travellings / </a>
<span id="runtime_span"></span>
</p>
</div>
</footer>
</section>
</div>
</body>
</html>