Whirlpool instead of blob

This commit is contained in:
Johannes Zellner
2025-09-24 20:37:52 +02:00
parent 234c192429
commit dcab038020
2 changed files with 122 additions and 36 deletions
+122 -1
View File
@@ -171,7 +171,17 @@ onMounted(async () => {
<Transition name="fade-scale" mode="out-in">
<div class="view" v-if="waitingForDnsSetup" style="max-width: unset; height: 100%;">
<div style="display: flex; flex-direction: column; height: 100%; align-items: center;">
<div class="gradient" v-if="waitingForDnsSetup"></div>
<div class="whirlpool" v-if="waitingForDnsSetup">
<div class="ring ring1"></div>
<div class="ring ring2"></div>
<div class="ring ring3"></div>
<div class="ring ring4"></div>
<div class="ring ring5"></div>
<div class="ring ring6"></div>
<div class="ring ring7"></div>
<div class="ring ring8"></div>
<div class="ring ring9"></div>
</div>
<h3>Please wait while Cloudron is setting up the dashboard</h3>
<h4 style="margin-top: 0">{{ progressMessage }}</h4>
<small>You can follow the logs on the server at <code @click="onCopyToClipboard('/home/yellowtent/platformdata/logs/box.log')">/home/yellowtent/platformdata/logs/box.log</code></small>
@@ -269,4 +279,115 @@ onMounted(async () => {
font-size: 0.9em;
}
.whirlpool {
width: 100px;
height: 100px;
margin: 100px auto;
position: relative;
}
.ring:before
{
content: '';
border-radius: 50%;
border: 1px solid #096dbd;
height: 30px;
width: 100px;
position: absolute;
}
.ring1:before
{
left: 40px;
width: 20px;
top: 12px;
height: 6px;
animation: 2.5s ease 0s infinite spinner;
}
.ring2:before
{
left: 35px;
width: 30px;
top: 10.5px;
height: 9px;
animation: 2.5s ease 0.1s infinite spinner;
}
.ring3:before
{
left: 30px;
width: 40px;
top: 9px;
height: 12px;
animation: 2.5s ease 0.2s infinite spinner;
}
.ring4:before
{
left: 25px;
width: 50px;
top: 7.5px;
height: 15px;
animation: 2.5s ease 0.3s infinite spinner;
}
.ring5:before
{
left: 20px;
width: 60px;
top: 6px;
height: 18px;
animation: 2.5s ease 0.4s infinite spinner;
}
.ring6:before
{
left: 15px;
width: 70px;
top: 4.5px;
height: 21px;
animation: 2.5s ease 0.5s infinite spinner;
}
.ring7:before
{
left: 10px;
width: 80px;
top: 3px;
height: 24px;
animation: 2.5s ease 0.6s infinite spinner;
}
.ring8:before
{
left: 5px;
width: 90px;
top: 1.5px;
height: 27px;
animation: 2.5s ease 0.7s infinite spinner;
}
.ring9:before
{
width: 100px;
height: 30px;
animation: 2.5s ease 0.8s infinite spinner;
}
@keyframes spinner {
0% {
transform: translateY(10px);
animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
50% {
transform: translateY(60px);
animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
100% {
transform: translateY(10px);
animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
}
</style>