-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.24 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/lamp.svg" />
<!-- <meta http-equiv="Access-Control-Allow-Origin" content="*" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="icon" href="<%- avatar %>" /> -->
<title><%- title %></title>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.1.0/typed.umd.js"
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/fetch-jsonp/1.3.0/fetch-jsonp.min.js"
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<style>
/* 浏览器滚动条样式 */
/* width */
::-webkit-scrollbar {
width: 8px;
height: 4px;
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
background: rgb(255, 255, 255);
border-radius: 8px;
}
/* 滚动条 */
::-webkit-scrollbar-thumb {
background: rgb(201, 201, 202);
border-radius: 8px;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>