admin 管理员组文章数量: 887021
2023年12月19日发(作者:round函数参数)
鼠标点击按钮图片切换+自动切换+左右按钮点击切换效果
上一次在我的文库中分享了点击按钮,图片左右切换轮播效果代码,今天主要是分享【鼠标点击按钮,图片进行切换+图片自动切换+点击左右按钮图片进行切换的三种效果的组合代码】。
最后的效果如下:
Html代码部分:
Css代码部分:
*{margin:0px;padding:0px}
alt="美女"
alt="美女"
alt="美女"
alt="美女"
alt="美女"
width="350"
width="350"
width="350"
width="350"
width="350"
li{list-style:none}
a{text-decoration:none}
img{border:0px}
.banner{width:350px;height:495px;margin:100px auto;position:relative;overflow:hidden}
.banner .pic{width:9999px;height:495px}
.banner .pic li{width:350px;height:495px;float:left}
.banner .anniu{width:100px;height:16px;position:absolute;left:165px;top:470px}
.banner .anniu li{width:16px;height:16px;background:white;float:left;margin:2px;display:inline;
cursor:pointer;border-radius:100%}
.banner .anniu {background:red}
.banner .lr{width:350px;height:50px;position:absolute;top:250px;display:none}
.banner .lr a{color:white}
.banner .lr .pre{width:20px;height:50px;float:left;background:none repeat scroll 0px 0px rgba(1, 0,
0, 0.6);text-align:center;line-height:50px;cursor:pointer}
.banner .lr .next{width:20px;height:50px;float:right;background:none repeat scroll 0px 0px rgba(1,
0, 0, 0.6);text-align:center;line-height:50px;cursor:pointer}
Javascript代码部分:
$(function(){
//鼠标滑过banner,左右按钮进行显示和隐藏
$(".banner").hover(function(){
$(".lr").show();
},function(){
$(".lr").hide();
});
//点击下面的小按钮,图片进行左右切换效果
$(".anniu li").click(function(){
$(this).addClass("on").siblings().removeClass("on");
var num=$(this).index();
$(".pic").animate({marginLeft:-350*num},"slow");
});
//图片自动轮播效果
var a=0;
var automatic=setInterval(function(){
a++;
a=a%5;
$(".pic").animate({marginLeft:-350*a},"slow");
$(".anniu li").eq(a).addClass("on").siblings().removeClass("on");
},6000);
});
//点击左右按钮,图片进行切换效果
$(".pre").click(function(){
a--;
a=(a+5)%5;
$(".pic").animate({marginLeft:-350*a},"slow");
$(".anniu li").eq(a).addClass("on").siblings().removeClass("on");
});
$(".next").click(function(){
a++;
a=a%5;
$(".pic").animate({marginLeft:-350*a},"slow");
$(".anniu li").eq(a).addClass("on").siblings().removeClass("on");
});
版权声明:本文标题:鼠标点击按钮图片切换+自动切换+左右按钮点击切换效果 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1702940658h436748.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论