如何让这个滑块导航栏进入循环?
我做了一个简单的jquery,只是增加了边距,你能想到一种轻松循环这个东西的方法吗?
现在,如果你点击足够的时间,它就会显示空白......
任何帮助表示感谢。
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;
});
});