forked from qiuxiang/ky-genshin-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.66 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
<meta name="description" content="超级丝滑的原神地图,数据来源:空荧酒馆" />
<title>原神地图</title>
<link rel="stylesheet" href="uno.css" />
<link rel="apple-touch-icon" href="favicon.png" />
<link rel="icon" type="image/png" href="favicon.png" />
<script>
(function (w, d, s, q, i) {
w[q] = w[q] || [];
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s);
j.async = true;
j.id = "beacon-aplus";
j.src = "https://d.alicdn.com/alilog/mlog/aplus/" + i + ".js";
f.parentNode.insertBefore(j, f);
})(window, document, "script", "aplus_queue", "203467608");
aplus_queue.push({
action: "aplus.setMetaInfo",
arguments: ["appKey", "652d63c258a9eb5b0aeee31e"],
});
</script>
<style>
html,
body {
overscroll-behavior: none;
}
::-webkit-scrollbar {
display: none;
}
:root {
--un-drop-shadow-color: rgba(0, 0, 0, 0.5);
}
.marker:after {
content: "";
position: absolute;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid rgb(255 247 237);
bottom: -9px;
left: 50%;
margin-left: -10px;
}
</style>
</head>
<body class="select-none font-sans text-gray-700 m-0">
<main class="fixed w-full h-full bg-white z-10" id="main"></main>
<script src="index.js"></script>
</body>
</html>