首页 文章

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

提问于
浏览
2

我尝试在我的网站上集成一个视频(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

    尝试使用它来切换 muted 属性 .

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

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

相关问题