58 lines
1.3 KiB
HTML
58 lines
1.3 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>服务运行中</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: url('https://webwlx.oss-cn-beijing.aliyuncs.com/bg.png')
|
|
no-repeat center center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.tips-box {
|
|
position: fixed; /* 文字渐变*/
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: rgba(255, 255, 255, 0.7);
|
|
border-radius: 10px;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.text {
|
|
background: linear-gradient(
|
|
90deg,
|
|
#1abc9c 0%,
|
|
#2ecc71 33.3%,
|
|
#27ae60 66.6%,
|
|
#3498db 100%
|
|
);
|
|
-webkit-background-clip: text; /*截取背景区域为文字*/
|
|
color: transparent;
|
|
background-size: 300% 100%; /*扩大背景区域*/
|
|
animation: text 4s infinite linear;
|
|
font-size: 40px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
@keyframes text {
|
|
0% {
|
|
background-position: 0 0;
|
|
}
|
|
100% {
|
|
background-position: -150% 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="tips-box">
|
|
<h1 class="text">服务运行中...</h1>
|
|
</div>
|
|
<script></script>
|
|
</body>
|
|
</html>
|