Compare commits

..

No commits in common. "4f4939b8c3acaa38ff6c9ecc4d91d8167641a154" and "e8cf5255617b079b38fc2aa0287d6f3f7c774169" have entirely different histories.

3 changed files with 5 additions and 12 deletions

View File

@ -21,7 +21,7 @@
"author": "Dennis Ritchie"
},
{
"text": "UN*X",
"text": "UNIX",
"author": "Dennis Ritchie"
},
{

View File

@ -41,7 +41,6 @@ async function sessionStartupAnimation()
let text_elem = document.createElement("h1");
text_elem.className = "startup-animation-text";
text_elem.style.setProperty("--delay", String(200 / quote.text.length));
text_elem.style.setProperty("--half-text-len", String((quote.text.length - 1) / 2));
for(let i = 0; i < quote.text.length; i++)
{

View File

@ -39,19 +39,13 @@
@keyframes char-animation {
0% {
filter: hue-rotate(45deg);
top: 110vh;
transform: scale(800%) translate(calc((var(--char-nb) - var(--half-text-len)) * 5vh));
}
35% {
transform: scale(150%) translate(calc((var(--char-nb) - var(--half-text-len)) * -3vh));
top: 75vh;
}
45% {
top: -20vh;
transform: scale(110%) translate();
top: -10vh;
}
75% {
top: -1vh;
transform: scale(100%) translate(0);
}
90% {
top: -2vh;
@ -88,7 +82,7 @@
opacity: 0;
animation: char-animation 2.9s ease-in-out calc(var(--delay) * var(--char-nb) * 1ms + 1s),
opacity-fade-in 1s calc(var(--delay) * var(--char-nb) * 1ms + 1s),
opacity-fade-out 1s ease-in 4.2s;
opacity-fade-out 1s ease-in 4s;
}
.startup-animation-author {
@ -102,5 +96,5 @@
text-align: center;
white-space: nowrap;
animation: opacity-fade-in 1s ease-in,
opacity-fade-out 1s ease-in 4.2s;
opacity-fade-out 1s ease-in 4s;
}