详细简单的php图片轮播,最简单的jQuery轮播图

///轮播

$(function() {

//$("#toright").hide();

//$("#toleft").hide();

$('#toright').hover(function() {

$("#toleft").hide()

}, function() {

$("#toleft").show()

})

$('#toleft').hover(function() {

$("#toright").hide()

}, function() {

$("#toright").show()

})

})

var t;

var index = 0;

/自动播放

t = setInterval(play, 3000)

function play() {

index++;

if (index > 4) {

index = 0

}

// console.log(index)

$("#lunbobox ul li").eq(index).css({

"background": "#999",

"border": "1px solid #ffffff"

}).siblings().css({

"background": "#cccccc",

"border": ""

})

$(".lunbo a ").eq(index).fadeIn(1000).siblings().fadeOut(1000);

};

///点击鼠标 图片切换

$("#lunbobox ul li").click(function() {

//添加 移除样式

//$(this).addClass("lito").siblings().removeClass("lito"); //给当前鼠标移动到的li增加样式 且其余兄弟元素移除样式 可以在样式中 用hover 来对li 实现

$(this).css({

"background": "#999",

"border": "1px solid #ffffff"

}).siblings().css({

"background": "#cccccc"

})

var index = $(this).index(); //获取索引 图片索引与按钮的索引是一一对应的

// console.log(index);

$(".lunbo a ").eq(index).fadeIn(1000).siblings().fadeOut(1000); // siblings 找到 兄弟节点(不包括自己)

});

/上一张、下一张切换

$("#toleft").click(function() {

index--;

if (index <= 0) //判断index<0的情况为:开始点击#toright index=0时 再点击 #toleft 为负数了 会出错

{

index = 4

}

console.log(index);

$("#lunbobox ul li").eq(index).css({

"background": "#999",

"border": "1px solid #ffffff"

}).siblings().css({

"background": "#cccccc"

})

$(".lunbo a ").eq(index).fadeIn(1000).siblings().fadeOut(1000); // siblings 找到 兄弟节点(不包括自己)必须要写

}); // $("#imgbox a ")获取到的是一个数组集合 。所以可以用index来控制切换

$("#toright").click(function() {

index++;

if (index > 4) {

index = 0

}

console.log(index);

$(this).css({

"opacity": "0.5"

})

$("#lunbobox ul li").eq(index).css({

"background": "#999",

"border": "1px solid #ffffff"

}).siblings().css({

"background": "#cccccc"

})

$(".lunbo a ").eq(index).fadeIn(1000).siblings().fadeOut(1000); // siblings 找到 兄弟节点(不包括自己)

});

$("#toleft,#toright").hover(function() {

$(this).css({

"color": "black"

})

},

function() {

$(this).css({

"opacity": "0.3",

"color": ""

})

})

///

///鼠标移进 移出

$("#lunbobox ul li,.lunbo a img,#toright,#toleft ").hover(

鼠标移进

function() {

$('#toright,#toleft').show()

clearInterval(t);

},

///鼠标移开

function() {

//$('#toright,#toleft').hide()

//alert('aaa')

t = setInterval(play, 3000)

function play() {

index++;

if (index > 4) {

index = 0

}

$("#lunbobox ul li").eq(index).css({

"background": "#999",

"border": "1px solid #ffffff"

}).siblings().css({

"background": "#cccccc"

})

$(".lunbo a ").eq(index).fadeIn(1000).siblings().fadeOut(1000);

}

})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值