Youtube Iframe disable pause video

前端 未结 7 2112
刺人心
刺人心 2020-12-06 05:53

I need to play video on my web-page. But I need to deny control. I put \"controls=0\", but player has pause action when I click on it. Can I disable \"pause\" action in YouT

7条回答
  •  [愿得一人]
    2020-12-06 06:16

    Here is a way to block the screen so the user can't click anything.

    // block screen so user cant click
    var blockDiv = $(document.createElement('div'))
            .attr('id', 'blockDiv')
            .height('100%').width('100%')
            .css({'z-index':'3333', 'position' : 'absolute', 'top': '0', 'left':'0'});
    $('body').append(blockDiv);
    

提交回复
热议问题