[Resolved] Poster of gutenberg video block to cover all video area

Home Forums Support [Resolved] Poster of gutenberg video block to cover all video area

Home Forums Support Poster of gutenberg video block to cover all video area

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #1334220
    David
    Staff
    Customer Support

    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");
        }
    });
    #1334248
    Ricardo

    Thanks man,

    You’re great!

    I’m recommending this theme to everyone.

    #1335149
    David
    Staff
    Customer Support

    Awesome – glad to be of help

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.