-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 2.55 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
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<link rel="icon" href="/favicon2.ico" />
<!-- 友好搜索 -->
<meta name="description" content="我是一个项目模版"/>
<meta name="keywords" content="vue项目 模版 前端 LFR502"/>
<meta name="viewport" content="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no">
<!-- `width=device-width` 会导致 iPhone 5 添加到主屏后以 WebApp 全屏模式打开页面时出现黑边 http://bigc.at/ios-webapp-viewport-meta.orz -->
<!-- 注意!!如果将模版作为移动端的项目开始,考虑自行添加一些移动端相关的meta -->
<title>WYSIWYG</title>
<style>
/* 优化页面的FP */
body {
background: #fff;
}
#loading-page {
position: absolute;
top: 50%;
left: 50%;
}
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<svg id="loading-page" width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" fill="white" fill-opacity="0.01"/><path d="M24 4V8" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M34 6.67944L32 10.1435" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M41.3206 14L37.8565 16" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M44 24H40" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M41.3206 34L37.8565 32" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M34 41.3206L32 37.8565" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 44V40" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 41.3206L16 37.8565" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.67944 34L10.1435 32" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 24H8" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.67944 14L10.1435 16" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 6.67944L16 10.1435" stroke="#333" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
<div id="app" v-clock></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>