サムネイルギャラリーがあり、ギャレーの終わりに達したらギャラリーの最初に戻りたいのですが、この機能を実現する方法がわからないようです。これが私がこれまでに持っているものです[1]:http://jsfiddle.net/jsavage/vp62g/3/[質問]。どんな助けでも大歓迎です!ありがとう!
質問する
94 次
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 に答える