forked from leon-kfd/Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (81 loc) · 2.81 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0"
/>
<meta name="referrer" content="never" />
<meta
name="keywords"
content="Howdz,浏览器起始页,低代码,可视化编辑,自定义面板,Vue,Dashboard,Howdyjs,Leon.D"
/>
<meta
name="description"
content="Howdz起始页,一个完全自定义配置的浏览器起始页,个性化的浏览器导航首页面板,支持自定义添加组件,可编辑组件各种属性。响应式设计,可自定义随机壁纸、动态壁纸等,目前已提供时钟、天气、搜索栏、TodoList、热搜等多种组件。"
/>
<meta property="og:title" content="Howdz起始页 ⚡ 一个完全自定义配置的浏览器起始页" />
<meta
property="og:description"
content="Howdz起始页,一个完全自定义配置的浏览器起始页,个性化的浏览器导航首页面板,支持自定义添加组件,可编辑组件各种属性。响应式设计,可自定义随机壁纸、动态壁纸等,目前已提供时钟、天气、搜索栏、TodoList、热搜等多种组件。"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="Leon.D" />
<title>Howdz 起始页</title>
<style>
#globalLoading {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
}
#globalLoading .loader,
.custom-loading .loader {
width: 80px;
height: 80px;
border-radius: 50%;
display: inline-block;
border-top: 4px solid #ff3d00;
border-right: 4px solid transparent;
animation: rotation 1s linear infinite;
}
#globalLoading .loader:after,
.custom-loading .loader:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 80px;
height: 80px;
border-radius: 50%;
border-left: 4px solid #55afca;
border-bottom: 4px solid transparent;
animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<style id="injectCSS" type="text/css"></style>
</head>
<body>
<div id="globalLoading">
<span class="loader"></span>
</div>
<div id="app" style="width: 100%; height: 100%"></div>
<script type="module" src="/src/main.ts"></script>
<script id="injectJS"></script>
</body>
</html>