youtube嵌入视频自动播放功能不适用于谷歌浏览器中不变的声音,但适用于Firefox

时间:2018-11-04 08:24:39

标签: javascript jquery youtube jsapi

我尝试从3天开始,使用“声音未静音”自动播放google chrome中的youtube嵌入式视频,但无法正常工作。虽然具有相同代码的相同视频可以在mozilla firefox中使用。我尝试过不同的代码,但到目前为止没有成功。

这是代码。

<head>
    <style>
        body{
            margin-left: 0px;
        }
    </style>
</head> 
<script src="js/jquery-3.1.1.min.js"></script>
<div id="YouTubeVideoPlayer"></div>

<script async src="https://www.youtube.com/iframe_api"></script>
<script>
 function onYouTubeIframeAPIReady() {
  var player;
  player = new YT.Player('YouTubeVideoPlayer', {
    videoId: 'M7lc1UVf-VE', // YouTube Video ID
    width: 560,               // Player width (in px)
    height: 316, 
    start:0,             // Player height (in px)
    playerVars: {
      autoplay: 1,        // Auto-play the video on load
      controls: 1,        // Show pause/play buttons in player
      showinfo: 0,        // Hide the video title
      modestbranding: 1,  // Hide the Youtube Logo
      loop: 1,            // Run the video in a loop
      fs: 0,              // Hide the full screen button
      cc_load_policy: 0, // Hide closed captions
      iv_load_policy: 3,  // Hide the Video Annotations
      autohide: 0         // Hide video controls when playing
    },
    events: {
      onReady: function(e) {
       e.target.setVolume(40);
      }
    }
  });
 }

$("body").animate({ margin: "400px 0px 0px 0px" }, 18000 );

</script>

0 个答案:

没有答案
相关问题