js高手进!怎样才能让这段js焦点图代码实现鼠标经过时停止自动切换?
意思就是我用鼠标进入图片时,停止自动切换,鼠标不在那个区域时,继续自动切换,js代码如下:vartimer=null;varoffset=8000;varindex=0;...
意思就是我用鼠标进入图片时,停止自动切换,鼠标不在那个区域时,继续自动切换,js代码如下:var timer = null;
var offset = 8000;
var index = 0;
//大图交替轮换
function slideImage(i){
var id = 'image_'+ target[i];
$('#'+ id)
.animate({opacity: 1}, 800, function(){
$(this).find('.word').animate({height: 'show'}, 'slow');
}).show()
.siblings(':visible')
.find('.word').animate({height: 'hide'},'fast',function(){
$(this).parent().animate({opacity: 0}, 800).hide();
});
}
//bind thumb a
function hookThumb(){
$('#thumbs li a')
.bind('click', function(){
if (timer) {
clearTimeout(timer);
}
var id = this.id;
index = getIndex(id.substr(3));
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
this.blur();
return false;
});
}
//bind next/prev img
function hookBtn(){
$('#thumbs li img').filter('#play_prev,#play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'play_prev') {
index--;
if (index < 0) index = 3;
}else{
index++;
if (index > 3) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
function bighookBtn(){
$('#bigpicarea p span').filter('#big_play_prev,#big_play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'big_play_prev') {
index--;
if (index < 0) index =3;
}else{
index++;
if (index > 3) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
//get index
function getIndex(v){
for(var i=0; i < target.length; i++){
if (target[i] == v) return i;
}
}
function rechange(loop){
var id = 'thumb_'+ target[loop];
$('#thumbs li a.current').removeClass('current');
$('#'+ id).addClass('current');
}
function auto(){
index++;
if (index > 3){
index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
}
$(function(){
//change opacity
$('div.word').css({opacity: 0.85});
auto();
hookThumb();
hookBtn();
bighookBtn()
}); 展开
var offset = 8000;
var index = 0;
//大图交替轮换
function slideImage(i){
var id = 'image_'+ target[i];
$('#'+ id)
.animate({opacity: 1}, 800, function(){
$(this).find('.word').animate({height: 'show'}, 'slow');
}).show()
.siblings(':visible')
.find('.word').animate({height: 'hide'},'fast',function(){
$(this).parent().animate({opacity: 0}, 800).hide();
});
}
//bind thumb a
function hookThumb(){
$('#thumbs li a')
.bind('click', function(){
if (timer) {
clearTimeout(timer);
}
var id = this.id;
index = getIndex(id.substr(3));
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
this.blur();
return false;
});
}
//bind next/prev img
function hookBtn(){
$('#thumbs li img').filter('#play_prev,#play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'play_prev') {
index--;
if (index < 0) index = 3;
}else{
index++;
if (index > 3) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
function bighookBtn(){
$('#bigpicarea p span').filter('#big_play_prev,#big_play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'big_play_prev') {
index--;
if (index < 0) index =3;
}else{
index++;
if (index > 3) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
//get index
function getIndex(v){
for(var i=0; i < target.length; i++){
if (target[i] == v) return i;
}
}
function rechange(loop){
var id = 'thumb_'+ target[loop];
$('#thumbs li a.current').removeClass('current');
$('#'+ id).addClass('current');
}
function auto(){
index++;
if (index > 3){
index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
}
$(function(){
//change opacity
$('div.word').css({opacity: 0.85});
auto();
hookThumb();
hookBtn();
bighookBtn()
}); 展开
2个回答
展开全部
简单说,给你的图片所在的元素绑定一个onmouseover事件,
然后,在触发这个事件的时候,注销掉你用于切换下一副图片的timer,
再,绑定一个onmouseout事件,重新启动你的定制的用于切换下衣服图片的timer
然后,在触发这个事件的时候,注销掉你用于切换下一副图片的timer,
再,绑定一个onmouseout事件,重新启动你的定制的用于切换下衣服图片的timer
追问
大哥,您具体说下行么?俺实在是改不了啦,改了一天啦,也没改好,也知道是ommouseover事件,就是加不对地方啊
追答
知道怎么绑定事件咩?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-01-14
展开全部
试试这个图片轮播 有12345数字一起切换
鼠标点一下数字会变换到另一张图片,不点就会自动换
里面有教程和源码
鼠标点一下数字会变换到另一张图片,不点就会自动换
里面有教程和源码
参考资料: http://www.blueidea.com/common/shoutbox/redir.asp?9=p&id=10895
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询