当鼠标悬停在链接上时,我需要播放视频(使用流动播放器)。我试着自己做,但我做不到。请帮忙。谢谢。
答案 0 :(得分:0)
您需要做的是处理悬停事件,然后使用flowplayer api播放视频。您尚未指定使用的是哪个流程图(HTML或Flash),因此我将为两者提供示例。
HTML示例
$('a').hover(function(){
// plays the video on hover
flowplayer().play();
}, function(){
// stops the video on hover out
flowplayer().stop();
});
Flash示例
$f("player", "flowplayer.swf", "my-video.flv");
$('a').hover(function(){
// plays the video on hover
$f().play();
}, function(){
// stops the video on hover out
$f().stop();
});