2 Commits

Author SHA1 Message Date
Janis
14079a997e v0.0.8 2022-10-29 16:53:39 +02:00
Janis
23044c320d v0.0.8 2022-10-29 16:53:35 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -16,19 +16,19 @@ function updateSubCount() {
function sub(subName) {
frame.style.animationName = "subAnimation";
frame.style.animationDuration = "11s";
frame.style.animationDuration = "5s";
subCount.style.animationName = "backgroundSubAnimation";
subCount.style.animationDuration = "11s";
subCount.style.animationDuration = "5s";
subCount.innerText = subName + " " + subCountNumber;
setTimeout(() => {
frame.style.animationName = "borderAnimation";
frame.style.animationDuration = "5s";
frame.style.animationDuration = "20s";
subCount.style.animationName = "backgroundAnimation";
subCount.style.animationDuration = "5s";
subCount.style.animationDuration = "20s";
subCount.innerText = subCountNumber;
updateSubCount();
}, 11000);

View File

@@ -1,3 +1,3 @@
{
"version": "v0.0.7"
"version": "v0.0.8"
}