使用侧列表托盘嵌入 YouTube 播放列表

问题描述 投票:0回答:1

我一直在使用 javascript 使用 YouTube 嵌入播放列表功能。

到目前为止,当我嵌入播放列表时,它看起来像这样:

http://postimage.org/image/vk6fv56yx/

蓝色圆圈显示播放列表中的项目数量,单击时会显示缩略图。

当视频开始播放时,需要单击播放列表按钮才能显示列表,如下所示:

http://postimage.org/image/ezzxpy7pn/

但我希望播放器像 YouTube 页面上显示的那样显示,如下所示:

http://postimage.org/image/4suta8kuh/

现在这是我使用的代码:

<script>
  // Load the IFrame Player API code asynchronously.
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/player_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // Replace the 'ytplayer' element with an <iframe> and
  // YouTube player after the API code downloads.
  var player;
  function onYouTubePlayerAPIReady() {
    player = new YT.Player('ytplayer', {
        height: '390',
        width: '640',
        videoId: 'n2ISkJZC6DI',
        playerVars: {
                  listType:'playlist',
                  list: 'PL546E6163151751EE'
                },
        events: {
            'onReady': onPlayerReady,
            'onStateChange': onPlayerStateChange
        }
    });
  }

  function onPlayerReady(){
    alert('player ready');
  }

  function onPlayerStateChange(){
    alert('player changed');
  }

</script>

效果很好!但我想知道是否有办法改变播放列表托盘的视图。

非常感谢大家的帮助:)

youtube embed playlist tray
1个回答
0
投票

您可以使用 YouTube 嵌入播放器的 Flash 版本来实现该外观。然而,托盘现在位于左侧。

<iframe width='500' height='294' src="https://www.youtube.com/v/videoseries?list=PL546E6163151751EE"></iframe>

© www.soinside.com 2019 - 2024. All rights reserved.