這是我的HTML:展開DIV和點擊圖片播放視頻
<div id="wrapper">
<div id="left-bg">
<img class="play-button" src="/play-100x100.png" width="100" height="100" alt="play" title="play">
<iframe id="iframe" width="1280" height="720" src="//www.youtube.com/embed/F0naUkyEkmM" data-autoplay-src="//www.youtube.com/embed/F0naUkyEkmM?autoplay=1"></iframe>
</div>
<div id="right-bg">
<text
</div>
</div>
,這是我的jQuery:
jQuery(function($){
$('#left-bg, #right-bg').click(
function(){
$(this).animate({'width': '100%'},600).siblings().animate({'width':'0'},600);
$('<button class="show">Show all</button>')
.appendTo('#wrapper');
});
$('.show').live('click',
function(){
$('#left-bg').animate(
{
'width': '50%'
},600);
$('#right-bg').animate(
{
'width': '50%'
},600);
$(this).remove();
});
});
我想是有一個DIV一分爲二,使當點擊左邊的DIV時,它會展開到全高並開始播放視頻,同時用關閉按鈕關閉視頻,視頻暫停,左邊的DIV恢復正常的高度和寬度。
創建小提琴。 – smdsgn
您的HTML已損壞(神祕的「
moopet
查看YouTube的iframe api參考: https://developers.google.com/youtube/iframe_api_reference –