本文实例为大家分享了jquery实现淡入淡出轮播图的具体代码,供大家参考,具体内容如下
如题所述,直接上代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <style> * { padding: 0px; margin: 0px; } /* 盒子 */ .box { position: relative; } /* banner图 */ .box, .banner { width: 1000px; height: 500px; margin: 50px auto; } .box .banner { position: relative; list-style: none; } .banner li { display: none; } .box ul li img { position: absolute; } .banner .b1 { display: block; } span { background: rgb(0, 0, 0, 0.5); width: 40px; height: 50px; display: block; position: absolute; left: 0px; top: 50%; z-index: 3; line-height: 50px; text-align: center; cursor: pointer; font-family: "宋体"; font-size: 20px; color: white; } .right { left: auto; right: 0px; } .bottom { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); list-style: none; } .bottom li { width: 10px; height: 10px; background: rgb(255, 255, 255); float: left; border-radius: 50%; margin: 0px 5px; /* 重影 */ box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); cursor: pointer; } .bottom .on { background: rgb(255, 153, 0); } </style> <script src="/UploadFiles/2021-04-02/jquery.js">其实淡入淡出轮播图的核心思想就是获取到当前的索引,根据索引找出图片的索引然后更改索引达到一个图片显示 其他图片消失 然后轮流交替进行的。最主要的核心思想在上面sibinling()中 通过这个方法让当前元素进行淡入操作但是让其他元素进行淡出操作,所以效果上就形成了,一张张图盘轮流出来的效果。
更多关于轮播的精彩文章,请点击《jquery图片轮播》进行学习
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
jquery,轮播图
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“jquery实现淡入淡出轮播图效果”评论...