如何将优酷HTML5播放器换成Flash播放器
//自执行函数
$(document).ready(function(){
//alert("haha");
//当前页
var $index=0;
//前一页
var $agodex=0;
//计时器
var clearTime=null;
//切换的方法
function scrollPlay(){
//修改点的位置
$(".btn span").eq($index).addClass("hover").siblings().removeClass("hover");
//当前页大于前一页
if($index>$agodex){
$(".scroll img").eq($agodex).stop(true,true).animate({
"left":"-1266px"
});
$(".scroll img").eq($index).css("left","1266px").stop(true,true).animate({
"left":"0"
});
}else if($index<$agodex){
$(".scroll img").eq($agodex).stop(true,true).animate({
"left":"1266px"
});
$(".scroll img").eq($index).css("left","-1266px").stop(true,true).animate({
"left":"0"
});
}
}
// $index=3;
// $agodex=2;
//计时器方法
function autoPlay(){
clearTime=setInterval(function(){
$index++;
if($index>4){
$index=0;
$agodex=4;
}
scrollPlay();
$agodex=$index;
},2000);
}
autoPlay();
//鼠标移动到小点
$(".btn span").mouseover(function(){
//鼠标移动上来的操作
//清空计时器
clearInterval(clearTime);
//得到当前选中的点
$index=$(this).index();
scrollPlay();
$agodex=$index;
}).mouseout(function(){
autoPlay();
});
});