mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-09-17 08:46:38 +08:00
58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<title>Yi Ai</title>
|
||
<style>
|
||
.loading-container {
|
||
position: fixed;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
}
|
||
|
||
.loading {
|
||
display: inline-block;
|
||
width: 80px;
|
||
height: 80px;
|
||
}
|
||
|
||
.loading:after {
|
||
content: " ";
|
||
display: block;
|
||
width: 64px;
|
||
height: 64px;
|
||
margin: 8px;
|
||
border-radius: 50%;
|
||
border: 6px solid #000;
|
||
border-color: #000 transparent #000 transparent;
|
||
animation: loading 1.2s linear infinite;
|
||
}
|
||
|
||
@keyframes loading {
|
||
0% {
|
||
transform: rotate(0);
|
||
}
|
||
100% {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<div class="loading-container">
|
||
<div class="loading"></div>
|
||
</div>
|
||
|
||
<h1>Welcome Use Yi Ai</h1>
|
||
</body>
|
||
|
||
<script>
|
||
console.log(
|
||
"%c本项目作者----小易,联系QQ:805239273",
|
||
"background-color:rgb(30,30,30);border-radius:4px;font-size:12px;padding:4px;color:rgb(220,208,129);"
|
||
)
|
||
</script>
|
||
</html>
|