左右のボタンで小さな画像の水平方向のリストをスクロールするために使用している jQuery を次に示します。
$(document).ready(function(){
$(".left").click(function (event) {
event.preventDefault();
$(".mover").animate({marginLeft: '+=60px'}, 0);
});
$(".right").click(function (event) {
event.preventDefault();
$(".mover").animate({ marginLeft: '-=60px' }, 0);
});
});
現在、リストをスクロールできる距離に制限はありません。これを制限する簡単な方法はありますか?