1
我正在使用Vimeo Javascript API淡入淡出視頻上的標題覆蓋。使用Vimeo Javascript API淡入淡出標題覆蓋
由於我想在一個頁面上放置多個視頻,因此它的工作並不完美。
這裏的電流JS:
var animSpeed = 400;
function onPlay(id) {
jQuery('.title').fadeOut(animSpeed);
}
function onPause(id) {
jQuery('.title').fadeIn(animSpeed);
}
function onFinish(id) {
jQuery('.title').fadeIn(animSpeed);
}
jQuery(function($) {
var iframe = $('#vplayer')[0],
player = $f(iframe);
player.addEvent('ready', function() {
player.addEvent('play', onPlay);
player.addEvent('pause', onPause);
player.addEvent('finish', onFinish);
});
$('.title').click(function(){ $(this).fadeOut(animSpeed); player.api('pause'); });
});
http://codepen.io/niallthompson/pen/LVxdXa/
謝謝。非常感激。完美的作品。 –