From 19adaf479756aab17a1cc1f67cdfbb616e6a88e7 Mon Sep 17 00:00:00 2001 From: Ashley Date: Sun, 26 Feb 2023 11:20:43 +0000 Subject: [PATCH] add progressbar owo --- html/poketube.ejs | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/html/poketube.ejs b/html/poketube.ejs index bcdb0c38..8226e5ef 100644 --- a/html/poketube.ejs +++ b/html/poketube.ejs @@ -126,6 +126,28 @@ font-size: 10px; } } + +.progress-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 3px; + z-index: 9999; + display:none; + background-color: #f2f2f2; +} + +.progress-bar { + position: absolute; + top: 0; + left: 0; + width: 0%; + height: 100%; + background-color: purple; + transition: width 0.5s ease-in-out; +} + .comments-area .thumb { margin-right: 20px; @@ -290,6 +312,10 @@ .auto-play{ display:none !important; } + .progress-container { + display:none !important; + + } <% if (video.id == "QrGrOK8oZG8") { %> @@ -345,7 +371,10 @@ text-shadow: 1px 1px #000,1px 1px 0.1px #000;!important; //-->
- +
+
+
+