From 2349a5f67fd208be06ac494cf671bc0689c93a13 Mon Sep 17 00:00:00 2001 From: ashley Date: Sat, 11 May 2024 00:09:34 +0000 Subject: [PATCH] test commit ignore pls --- html/poketube.ejs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html/poketube.ejs b/html/poketube.ejs index 3f816e9b..01b8ab2a 100644 --- a/html/poketube.ejs +++ b/html/poketube.ejs @@ -3235,16 +3235,16 @@ function resumeProgress() { } if (currentOpacity === 1) { - element.style.transition = 'opacity 1s ease'; // Adjust the duration as needed + element.style.transition = 'opacity 0.2s ease'; // Adjust the duration as needed element.style.opacity = 0; } else { - element.style.transition = 'opacity 1s ease'; // Adjust the duration as needed + element.style.transition = 'opacity 0.2s ease'; // Adjust the duration as needed element.style.opacity = 1; } } window.onload = function() { - setInterval(toggleOpacity, 1500); + setInterval(toggleOpacity, 4500); };