时间:2021-05-26
项目要求页面兼容IE6,7,8等浏览器,我们可能会遇到这个轮播效果,轮播板块要求:无限循环、自动轮播和手动切换功能,每一次滚动一小格,网上有很多这类插件,例如:swiper等!
但是很多都是不兼容IE6,7,8这些低级浏览器的,没有办法,只能自己写一个类似的轮播插件
废话不多说,直接上代码:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="js/jquery-1.8.3-20180801.min.js"></script> <style> *{margin: 0;padding: 0;} div{position: relative;width: 1000px;overflow: hidden;height: 100px;line-height:100px;} ul{position: absolute;list-style: none;overflow: hidden;} li{float: left;width: 200px;height: 100px;text-align:center;color:#fff;} a{position: absolute;color:#fff;margin:0 10px;font-size:30px;text-decoration:none;} </style> </head> <body> <div> <ul> <li style="background: red;">1</li> <li style="background: yellow;">2</li> <li style="background: blue;">3</li> <li style="background: black;">4</li> <li style="background: green;">5</li> <li style="background: orange;">6</li> <li style="background: skyblue;">7</li> <li style="background: blue;">8</li> <li style="background: green;">9</li> <li style="background: orange;">10</li> <li style="background: skyblue;">11</li> </ul> <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="prev" style="left:0px;">←</a> <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="next" style="right:0px;">→</a> </div> </body> <script type="text/javascript"> var fli = $("ul li").clone(true); var oul = $("ul"); oul.append(fli); oul.width($("ul li").eq(0).width()*$("ul li").length); var inow = 0; var timer = null; $("div").mouseover(function(){ clearInterval(timer); }) $("div").mouseout(function(){ autoplay(); }) $(".next").click(function(){ if(inow == $("ul li").length/2){ oul.css("left","0px"); inow = 1; }else{ inow++; } var leng = -inow*$("ul li").eq(0).width()+"px"; oul.animate({"left":leng}); }) $(".prev").click(function(){ if(inow == 0){ var ml = -$("ul li").eq(0).width()*($("ul li").length/2)+"px"; oul.css("left",ml); inow = $("ul li").length/2-1; }else{ inow--; } var leng = -inow*$("ul li").eq(0).width()+"px"; oul.animate({"left":leng}); }) function autoplay(){ timer = setInterval(function(){ if(inow == $("ul li").length/2){ oul.css("left","0px"); inow = 1; }else{ inow++; } console.log(inow); var leng = -inow*$("ul li").eq(0).width()+"px"; oul.animate({"left":leng}); },2000); } autoplay(); </script></html>希望这篇文章能帮到大家,喜欢技术交流的可以关注我,一起交流前端技术。感谢大家对的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
目前这个setTimeout可以很好地兼容IE6,7,8,9以及谷歌浏览器Chrome,火狐浏览器FireFox,苹果浏览器Safari,Opera。setTi
一般浏览器就IE6、IE7、IE8、火狐、GOOGLE浏览器chrome等,大家最困扰的就是网页在各大浏览器的兼容问题,其实所有浏览器在不兼容方面只存在两点:浮
让IE6,7,8支持CSS3的部分属性。今天要给大家介绍的这个htc,它可以让IE浏览器支持CSS3的border-radius、box-shadow、bord
1.浏览器兼容问题:浏览器兼容性的例子:ie6,ie7对table.appendChild("tr")的支持和IE8不一样,用insertRow、insertC
CSS代码中,则可以根据各浏览器自己独立的可识别的特殊代码来编写区分浏览器的代码,例如为IE系列浏览器可读[\9],而IE6和IE7可读[*],另外IE6可辨识