后端管理界面
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

124 lines
2.4 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= webpackConfig.name %></title>
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style>
html,
body,
#app {
height: 100%;
margin: 0px;
padding: 0px;
}
.chromeframe {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
#loadingbg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(119deg, #D9D4F5 0%, #B3D1F9 0%, #6CAFFD 100%, #84A7FB 100%, #A1ADFC 100%);
/*background-color: #304156;*/
}
.loader-4 {
width: 10px;
height: 40px;
border-radius: 4px;
display: inline-block;
position: relative;
background: currentColor;
color: #fff;
animation: animloader 0.3s 0.3s linear infinite alternate;
}
.loader-4::after,
.loader-4::before {
content: '';
width: 10px;
height: 40px;
border-radius: 4px;
background: currentColor;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 20px;
animation: animloader 0.3s 0.45s linear infinite alternate;
}
.loader-4::before {
left: -20px;
animation-delay: 0s;
}
@keyframes rotation {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(360deg)
}
}
@keyframes zero {
0% {
transform: scale(1) rotate(0deg)
}
100% {
transform: scale(0) rotate(360deg)
}
}
@keyframes animloader {
0% {
height: 50px;
}
100% {
height: 50px / 10;
}
}
@keyframes bump {
0% {
transform: translate(-50%, 5px)
}
100% {
transform: translate(-50%, -5px)
}
}
</style>
</head>
<body>
<div id="app">
<div id="loadingbg">
<i class="loader-4"></i>
</div>
</div>
</body>
</html>