4

我正在尝试找到一种制作li元素幻灯片的方法。我可以将它们全部放在一条线上(见我的小提琴)并将它们适应ul宽度。但是,当我单击 NEXT 按钮时,我希望它们向右滑动以显示隐藏的li.

我的小提琴:http: //jsfiddle.net/5cmR7/

类似的小提琴:http: //jsfiddle.net/L5yEA/

编辑:我想要这样的东西,但是以更好的方式构建,并且在单击 NEXT 时更精确。

4

2 回答 2

3

这就是你所需要的:

jsBin 演示

var liN = $('ul.shop-groups li').length;
var galW = $('.content').width();    
var curr = 0; // Set current 'li' slide

function animate(){  
  var setCurr= (curr===-1) ? (curr = liN-1) : (curr = curr%liN);   
  $('ul.shop-groups').stop().animate({left: -(galW*curr) },1200);  
}

$('#prev, #next').click(function(){
  var who= (this.id==='next') ? curr++ : curr-- ;
  animate();
});

只需给ID您的按钮一个:

<input id="prev" type="button" value="PREVIOUS"/>
<input id="next" type="button" value="NEXT"/>

这是更改后的 CSS:

.content {
    position:relative; /**/
    width:500px;
    height:250px;
    margin-right:auto;
    margin-left:auto;
    background-color:#555; 
    overflow:hidden; /**/
}

ul.shop-groups {
    position:absolute; /**/
    left:0px;
    background-color: #DDDDDD;
    border-bottom: 1px solid #CCCCCC;
    width: 999999px;
}
ul.shop-groups a {
    color: #fff;
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 20px;
    min-width: 20px;
    padding: 2px 15px;
    text-align: center;
}
li.shop-items {
    position:relative;/**/
    float:left;/**/
    border: solid 1px #d45;
    float : left;
    background-color:blue;
    height:248px;    /**/
    width:498px;     /**/
}
于 2012-06-28T22:15:41.183 回答
0

看看这个,是不是这个意思?

http://jsfiddle.net/5cmR7/5/

于 2012-06-28T22:03:05.727 回答