如何使用jQuery阻止简单的图像滚动滚动太远?

时间:2012-09-19 17:49:16

标签: javascript jquery

这是我用来滚动左右按钮的小图像水平列表的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);
});
});

现在,列表滚动的距离没有限制。有没有一种简单的方法来限制它?

0 个答案:

没有答案