From 7bb209a8d644935e97a14dd638312c3259571723 Mon Sep 17 00:00:00 2001 From: Janis Date: Sat, 29 Oct 2022 16:48:09 +0200 Subject: [PATCH] 2s to 11s --- js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/app.js b/js/app.js index 79c6002..93024d5 100644 --- a/js/app.js +++ b/js/app.js @@ -16,10 +16,10 @@ function updateSubCount() { function sub(subName) { frame.style.animationName = "subAnimation"; - frame.style.animationDuration = "2s"; + frame.style.animationDuration = "11s"; subCount.style.animationName = "backgroundSubAnimation"; - subCount.style.animationDuration = "2s"; + subCount.style.animationDuration = "11s"; subCount.innerText = subName + " " + subCountNumber; @@ -31,6 +31,6 @@ function sub(subName) { subCount.style.animationDuration = "20s"; subCount.innerText = subCountNumber; updateSubCount(); - }, 2000); + }, 11000); } updateSubCount();