Site logo

Archived topic

Poster of gutenberg video block to cover all video area

17 replies · Started by Ricardo on June 17, 2020

Viewing posts 16–18 of 18

Try this jQuery

jQuery("#myvideo").hover(function(event) {
    if(event.type === "mouseenter") {
        jQuery(this).attr("controls", "");
    } else if(event.type === "mouseleave") {
        jQuery(this).removeAttr("controls");
    }
});

Thanks man,

You're great!

I'm recommending this theme to everyone.

Awesome - glad to be of help

This archived topic is closed to new replies.