私は立ち往生しており、本当に助けが必要です。
ページに vimeo 埋め込みを動的に追加しようとしています。動画の静止画がページに読み込まれ、静止画をクリックするとフェードアウトし、埋め込まれた動画の再生が開始されます。これは、vimeo の読み込みバーとその上にボタンを置かずに、好きなように独自の再生ボタンを作成する簡単な方法です。これを初めて実現することは問題ではありません。
ただし、ビデオの下にサムネイルのリストがあり、ユーザーがサムネイルをクリックすると、ページの上部にあるビデオと静止フレームを入れ替えて、新しいビデオとフレームに置き換える必要があります。同じ機能を持つ必要があります。ユーザーがそのフレームをクリックすると、フレームがフェードアウトし、新しいビデオがその後ろで再生されます。
サムネイルがクリックされるたびにこれを動的に実行しようとしています。attr
サムネイルの1 つとしてビデオ ID を持っています。すべてを入れ替えることはできますが、静止フレームをクリックしても再生できません。vimeoのAPIと関係があると思いますが、わかりません。
ここのコードを見て、問題が何であるかがわかったら教えてください...
/*Load videos into top container when thumbnail is clicked....*/
$('.thumb').click(function(){
theID = $(this).attr('id');
$('#topImage').attr('src','<? echo site_url();?>/video_still_frame.jpg');
$('#topImage').show();
$('#embedContainer').html("<iframe id='player_"+theID+"' src='http://player.vimeo.com/video/"+theID+"?autoplay=0&api=1&player_id=player_"+theID+"' width='833' height='474' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>");
clearPlayer();
createPlayer(theID);
$('#embedContainer').hide();
});
function clearPlayer(){
iframe='';
player='';
status='';
}
/*VIMEO API*/
function createPlayer(idToUse){
alert(idToUse);
var iframe = $('#player_'+idToUse)[0],
player = $f(iframe),
status = $('.status');
alert('playerCreated');
// When the player is ready, add listeners for pause, finish, and playProgress
player.addEvent('ready', function() {
status.text('ready');
player.addEvent('pause', onPause);
player.addEvent('finish', onFinish);
player.addEvent('playProgress', onPlayProgress);
alert('add listeners');
});
// Call the API when a button is pressed
$('#topImage, #play').click(function(){
player.api('play');
alert('play video');
});
function onPause(id) {
status.text('paused');
}
function onFinish(id) {
status.text('finished');
}
function onPlayProgress(data, id) {
status.text(data.seconds + 's played');
}
}
/*Run once on page load */
createPlayer('123456789');