-
-
-
Hiya, Call me Tee!
-
-
-
-
-
+
+
+
+
+
Hiya, Call me Tee!
+
+
+
+
+
-
-
-
1%
-
▐▐
+
+
+
1%
+
⏯
+
-
-
-
-
\ No newline at end of file
+ if (video.paused) {
+ video.play();
+ btn.innerHTML = "⏸";
+ btn.style.fontSize = "27px";
+ btn.style.padding = "0";
+ btn.style.width = "30px";
+ btn.style.height = "30px";
+ btn.style.lineHeight = "30px";
+ btn.style.textAlign = "center";
+ } else {
+ video.pause();
+ btn.innerHTML = "⏵";
+ btn.style.fontSize = "27px";
+ btn.style.padding = "0";
+ btn.style.width = "30px";
+ btn.style.height = "30px";
+ btn.style.lineHeight = "27px";
+ btn.style.textAlign = "center";
+ }
+ }
+ volumeControl.addEventListener("input", function () {
+ video.volume = volumeControl.value;
+ var percentage = Math.round(volumeControl.value * 100);
+ volumePercentage.innerHTML = percentage + "%";
+ });
+
+
+