我想从youtube创建一个播放列表背景视频,我有这个
HTML
<div id="video"> <iframe src="//www.youtube.com/embed/Fhy6CHZ9dvY?list=PL82A0C437FEE5F6DA?autoplay=1&controls=0&loop=1&rel=0&showinfo=0&autohide=1&wmode=transparent&hd=1" www.youtube.com="" embed="" width="100%" height="100%" frameborder="0"></iframe>
</div>
CSS
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1000;
此代码适用于一个视频,并在视频完成后停止,我想知道在自动完成第一个视频后播放视频的任何方式,如播放列表。
我尝试从youtube中嵌入播放列表但是没有工作。
答案 0 :(得分:1)
在&
之后立即添加?
而不是list=PL82A0C437FEE5F6DA
所以最终的代码应该是这样的 -
<div id="video">
<iframe src="//www.youtube.com/embed/Fhy6CHZ9dvY?list=PL82A0C437FEE5F6DA&autoplay=1&controls=0&loop=1&rel=0&showinfo=0&autohide=1&wmode=transparent&hd=1" www.youtube.com="" embed="" width="100%" height="100%" frameborder="0"></iframe>
</div>