-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 2.27 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<link
rel="icon"
type="image/svg"
href="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjA2MTg3MjU5MDc4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjM0MTYiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PC9zdHlsZT48L2RlZnM+PHBhdGggZD0iTTUxMiA1MTJtLTUxMiAwYTEwMCAxMDAgMCAxIDAgMTAyNCAwIDEwMCAxMDAgMCAxIDAtMTAyNCAwWiIgcC1pZD0iMzQxNyIgZmlsbD0iIzkwYmVmMCI+PC9wYXRoPjwvc3ZnPg=="
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="renderer" content="webkit" />
<meta name="force-rendering" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>首页 - 烟雨江南</title>
</head>
<body>
<div id="app">
<style>
.app--loading { position: fixed; top: 50%; left: 50%; line-height: 40px; width: 160px; font-style: italic; font-size: 0; color: #dbdbdb; margin-left: -80px; margin-top: -20px; text-align: center; user-select: none; }
.app--loading i { display: inline-block; font-size: 28px; animation: app--loading 1s infinite alternate; font-style: italic; }
.app--loading i:nth-of-type(8) { animation-delay: -0.125s; }
.app--loading i:nth-of-type(7) { animation-delay: -0.25s; }
.app--loading i:nth-of-type(6) { animation-delay: -0.375s; }
.app--loading i:nth-of-type(5) { animation-delay: -0.5s; }
.app--loading i:nth-of-type(4) { animation-delay: -0.625s; }
.app--loading i:nth-of-type(3) { animation-delay: -0.75s; }
.app--loading i:nth-of-type(2) { animation-delay: -0.875s; }
.app--loading i:nth-of-type(1) { animation-delay: -1s; }
@keyframes app--loading { 0% { opacity: 0; } to { opacity: 1; } }
</style>
<div class="app--loading"><i>l</i><i>o</i><i>a</i><i>d</i><i>i</i><i>n</i><i>g</i><i></i></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>