93 lines
2.2 KiB
HTML
93 lines
2.2 KiB
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
|
||
<meta content="webkit" name="renderer" />
|
||
<!--
|
||
如果遇到http和https混用问题,可以使将全部的htp都转成https 但是如果都不支持
|
||
如果对方服务器可以支持https可以试下这个方案
|
||
如果不支持需要修改代码,将请求修改成/api/xxx的形式之后使用NGINX做反向代理
|
||
-->
|
||
<!--<meta content="upgrade-insecure-requests" http-equiv="Content-Security-Policy" />-->
|
||
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport" />
|
||
<title>bunny-admin</title>
|
||
<link href="/favicon.ico" rel="icon" />
|
||
<link href="https://unpkg.com/@wangeditor/editor@latest/dist/css/style.css" rel="stylesheet" />
|
||
<script src="https://unpkg.com/@wangeditor/editor@latest/dist/index.js"></script>
|
||
<script>
|
||
window.process = {};
|
||
</script>
|
||
</head>
|
||
|
||
<body>
|
||
<div id="app">
|
||
<style>
|
||
html,
|
||
body,
|
||
#app {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 100%;
|
||
height: 100%;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.loader,
|
||
.loader::before,
|
||
.loader::after {
|
||
width: 2.5em;
|
||
height: 2.5em;
|
||
border-radius: 50%;
|
||
animation: load-animation 1.8s infinite ease-in-out;
|
||
animation-fill-mode: both;
|
||
}
|
||
|
||
.loader {
|
||
position: relative;
|
||
top: 0;
|
||
margin: 80px auto;
|
||
font-size: 10px;
|
||
color: #406eeb;
|
||
text-indent: -9999em;
|
||
transform: translateZ(0);
|
||
transform: translate(-50%, 0);
|
||
animation-delay: -0.16s;
|
||
}
|
||
|
||
.loader::before,
|
||
.loader::after {
|
||
position: absolute;
|
||
top: 0;
|
||
content: '';
|
||
}
|
||
|
||
.loader::before {
|
||
left: -3.5em;
|
||
animation-delay: -0.32s;
|
||
}
|
||
|
||
.loader::after {
|
||
left: 3.5em;
|
||
}
|
||
|
||
@keyframes load-animation {
|
||
0%,
|
||
80%,
|
||
100% {
|
||
box-shadow: 0 2.5em 0 -1.3em;
|
||
}
|
||
|
||
40% {
|
||
box-shadow: 0 2.5em 0 0;
|
||
}
|
||
}
|
||
</style>
|
||
<div class="loader"></div>
|
||
</div>
|
||
<script src="/src/main.ts" type="module"></script>
|
||
</body>
|
||
</html>
|