Compare commits

...

2 commits

2 changed files with 6 additions and 6 deletions

View file

@ -160,14 +160,14 @@ main {
.loading > p:first-child {
animation: 0.9s 1 linear appear;
animation-fill-mode: forwards;
animation-delay: 0.2s;
animation-delay: 0.3s;
visibility: hidden;
position: fixed
}
.loading > p:not(:first-child):not(:last-child) {
animation: 0.9s 1 linear appear;
animation-delay: 1.1s;
animation-delay: 1.2s;
animation-fill-mode: forwards;
visibility: hidden;
position: fixed
@ -175,7 +175,7 @@ main {
.loading > p:last-child {
animation: 0.9s 1 linear appear;
animation-delay: 2s;
animation-delay: 2.1s;
animation-fill-mode: forwards;
visibility: hidden;
position: fixed

View file

@ -38,7 +38,7 @@ function Load (text) {
const r = Math.floor(Math.random() * loadArray.length)
const loadText = loadArray[r]
loading.chilren[0].innerHTML = loadText + "."
loading.chilren[1].innerHTML = loadText + ".."
loading.chilren[2].innerHTML = loadText + "..."
loading.children[0].innerHTML = loadText + "."
loading.children[1].innerHTML = loadText + ".."
loading.children[2].innerHTML = loadText + "..."
}