mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-10-19 00:13:42 +08:00
初始化
This commit is contained in:
BIN
service/public/favicon.ico
Normal file
BIN
service/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
50
service/public/index.html
Normal file
50
service/public/index.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Nine 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 Nine Ai</h1>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user