0

我有一个缩略图库,一旦您到达厨房的尽头,我希望它返回到画廊的开头,但我似乎无法弄清楚如何实现此功能。这是我到目前为止所拥有的 [1]:http://jsfiddle.net/jsavage/vp62g/3/[问题]。任何帮助将不胜感激!谢谢!

4

1 回答 1

0

如果你需要一些其他的东西:

$('div#arrowR').click(function(){
    if(index < endIndex ){
      index++;
      $item.animate({'left':'-=300px'});
    } else {
      index = 0;
      $item.animate({'left':'+='+(300*endIndex)+'px'});  
    }
});

$('div#arrowL').click(function(){
    if(index > 0){
      index--;            
      $item.animate({'left':'+=300px'});
    } else {
      index = endIndex;
      $item.animate({'left':'-='+(300*endIndex)+'px'});
    }
});
于 2013-03-08T21:43:53.730 回答