商品左右循环切换的效果

说明:这个jquery我也是网上找的,感觉代码很简洁,比很多插件好多了。但是我研究了好久还是不太明白切换的原理是怎样的,哎。记录一下,下次用得到就可以参考参考。(我还自己加了个自动轮播的效果进去)类似下面这张效果商品左右循环切换的效果
文章图片

【商品左右循环切换的效果】代码如下:




- 锐客网


*{
margin: 0;
padding: 0;
}
ul,li{
list-style: none;
}
.scroll{
margin: 40px auto;
position: relative;
width: 960px;
height: 240px;
overflow: hidden;
}
.scroll_box{
width: 960px;
height: 240px;
overflow: hidden;
}
.scroll_ul{
width: 2880px;
height: 240px;
}
.scroll_ul .scroll_item{
width: 960px;
height: 240px;
overflow: hidden;
float: left;
}
.scroll_ul .scroll_item .item_box{
width: 240px;
height: 240px;
background: orange;
color: #fff;
font-size: 24px;
float: left;
border: 1px solid red;
box-sizing: border-box;
}
.scroll .btn{
width: 32px;
height: 60px;
position: absolute;
top: 90px;
}
.scroll .prev_btn{
background: url(images/b_left.png);
left: 0;
}
.scroll .next_btn{
background: url(images/b_right.png);
right: 0;
}








  • 1
    2
    3
    4


  • 5
    6
    7
    8


  • 9
    10
    11
    12








    推荐阅读