fix(styles): 修复首屏加载动画滚动问题,添加加载字样

This commit is contained in:
chen.home 2022-09-26 21:25:28 +08:00
parent 393a267da8
commit b4d55c5e4c
2 changed files with 9 additions and 0 deletions

View File

@ -17,6 +17,7 @@
<div></div>
<div></div>
</div>
<span class="loading-title"><%= title %>加载中</span>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>

View File

@ -4,6 +4,11 @@
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 10vh;
position: fixed;
background-color: aliceblue;
z-index: 1;
}
.app-loading {
width: 88px;
@ -11,6 +16,9 @@
animation: app-loading-y0fdc1 2s infinite ease;
transform-style: preserve-3d;
}
.loading-title{
font-size: 2em;
}
.app-loading > div {
background-color: rgba(0, 77, 255, 0.2);