diff --git a/html/poketube.ejs b/html/poketube.ejs index 01b8ab2a..160fcc94 100644 --- a/html/poketube.ejs +++ b/html/poketube.ejs @@ -3235,10 +3235,10 @@ function resumeProgress() { } if (currentOpacity === 1) { - element.style.transition = 'opacity 0.2s ease'; // Adjust the duration as needed + element.style.transition = 'opacity 3s ease'; // Adjust the duration as needed element.style.opacity = 0; } else { - element.style.transition = 'opacity 0.2s ease'; // Adjust the duration as needed + element.style.transition = 'opacity 3s ease'; // Adjust the duration as needed element.style.opacity = 1; } }