我将如何限制此滑块。
我想将 leftarrow 限制为 margin-left:0; 向右箭头到边距:-left:-500px;
这很难做到吗?
任何帮助表示赞赏。
jsfiddle:http: //jsfiddle.net/utKqe/2/
//other category page, navigate through cats
$(document).ready(function() {
$('#otherleftarrow').click(function() {
$('#othermenu ul').animate({marginLeft: '-=100px'}, 200);
return false; // prevent default click action from happening!
});
$('#otherrighttarrow').click(function() {
$('#othermenu ul').animate({marginLeft: '+=100px'}, 200);
return false;
});
});