发布网友 发布时间:2022-04-30 05:39
共3个回答
热心网友 时间:2023-10-17 22:25
在你播放的视频网址后面输入热心网友 时间:2023-10-17 22:25
//自执行函数
$(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();
});
});
热心网友 时间:2023-10-17 22:25
在你播放的视频网址后面输入热心网友 时间:2023-10-17 22:26
没有办法自己更换,是网页本身会进行检测使用哪个播放器。热心网友 时间:2023-10-17 22:25
//自执行函数
$(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();
});
});
热心网友 时间:2023-10-17 22:26
没有办法自己更换,是网页本身会进行检测使用哪个播放器。