Youtube Iframe disable pause video

前端 未结 7 2115
刺人心
刺人心 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:22

    There's no way to disable pausing entirely.

    You could listen for YT.PlayerState.PAUSED events in an onStateChange handler and immediately call playVideo() when you detect one, but... I don't know, that sounds like it wouldn't be very user-friendly.

提交回复
热议问题