我一直在使用 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>
效果很好!但我想知道是否有办法改变播放列表托盘的视图。
非常感谢大家的帮助:)