iOS上的视频HTML5:仅在点击时自动播放声音

时间:2017-04-18 09:12:39

标签: ios html5 audio video autoplay

我尝试在我的网站上集成一个视频(MP4),该视频会在没有声音的情况下自动启动(自动播放),但是当您点击视频以查看它时,您必须能够拥有声音。

我不能这样做,是禁止的吗?

PS:我读过这个:https://webkit.org/blog/6784/new-video-policies-for-ios/

使用此代码,自动播放可以正常工作但我点击视频时iPad上没有声音。

<video id="video-autoplay" src="videos/animaux_720x404.mp4" autoplay muted controls="controls" playsinline>
     Votre navigateur ne supporte pas les vidéos au format HTML5.<br>
     Veuillez mettre à jour votre navigateur ou utilisez Mozilla Firefox.
  </video>

1 个答案:

答案 0 :(得分:0)

尝试使用此功能切换muted属性。

$("video").click( function (){
    $(this).prop("muted", !$(this).prop("muted"));
});

另请参阅this post了解iOS或官方Apple doc on HTMLMediaElement的可能性。