Universal Dark Theme Maker

Simple Dark Theme style for any website which you can configure per-site

< Opinie na Universal Dark Theme Maker

Ocena: Dobry - skrypt działa

§
Napisano: 13-01-2021

do u mind sharing video hover javascript in u javascript section?

OwynAutor
§
Napisano: 13-01-2021
Edytowano: 13-01-2021

you mean this to auto-enable controls on videos?

var currentVideo;
document.onmouseover = function(e){
 if (e.target.tagName == 'VIDEO' && e.target != currentVideo){
     currentVideo = e.target;
     e.target.setAttribute("controls", true);
     e.target.parentNode.parentNode.removeAttribute("target");
     e.target.parentNode.parentNode.href = "javascript: void(0)";
     if(e.target.nextElementSibling.className == "sound-toggle off")
     {
       e.target.nextElementSibling.remove();
         }
 }
};

Odpowiedz

Zaloguj się, by odpowiedzieć.