From 14079a997ee9617de34690b4f394c0a79b597d1b Mon Sep 17 00:00:00 2001 From: Janis Date: Sat, 29 Oct 2022 16:53:39 +0200 Subject: [PATCH] v0.0.8 --- js/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/app.js b/js/app.js index 63b3529..0db4b82 100644 --- a/js/app.js +++ b/js/app.js @@ -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);