0
onFinish()関数を使用してVimeoの埋め込みビデオをanothet URLにリダイレクトする方法は?onFinish()関数を使用してVimeoの埋め込みビデオをanothet URLにリダイレクトする方法は?
私は
function onFinish() {
window.location = "http://www.google.com";
}
と試みたがうまくいきませんでした。 Vimeoの開発者に
リンク:https://developer.vimeo.com/player/js-api
HTML:Froogaloopを用い
<iframe id="player1" src="https://player.vimeo.com/video/76979871?api=1&player_id=player1" width="630" height="354" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
JS:
$(function() {
var iframe = $('#player1')[0];
var player = $f(iframe);
var status = $('.status');
// 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);
});
// Call the API when a button is pressed
$('button').bind('click', function() {
player.api($(this).text().toLowerCase());
});
function onPause() {
status.text('paused');
}
function onFinish() {
status.text('finished');
}
function onPlayProgress(data) {
status.text(data.seconds + 's played');
}
})。
ありがとうございます。