3 Star 31 Fork 13

哈哈哈/Element-Admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
哈哈哈 提交于 2023-08-01 17:31 . fix: 修改env类型
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>%VITE_APP_TITLE%</title>
</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;
}
.loading-box {
display: flex;
justify-content: space-between;
width: 40px;
height: 40px;
}
.loading-item {
width: 15%;
height: 100%;
background-color: #007aff;
animation: load-animation 1.2s infinite ease-in-out;
}
.loading-item:nth-child(1) {
animation-delay: -1.2s;
}
.loading-item:nth-child(2) {
animation-delay: -1.1s;
}
.loading-item:nth-child(3) {
animation-delay: -1s;
}
.loading-item:nth-child(4) {
animation-delay: -0.9s;
}
.loading-item:nth-child(5) {
animation-delay: -0.8s;
}
@keyframes load-animation {
0%,
40%,
100% {
transform: scaleY(0.4);
}
20% {
transform: scaleY(1);
}
}
</style>
<div class="loading-box">
<div class="loading-item"></div>
<div class="loading-item"></div>
<div class="loading-item"></div>
<div class="loading-item"></div>
<div class="loading-item"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/A1059784729/Element-Admin.git
git@gitee.com:A1059784729/Element-Admin.git
A1059784729
Element-Admin
Element-Admin
v1.22.3

搜索帮助