我有 5 个缩略图排列在一起,2 个箭头可以上下滑动它们。现在,您可以向上单击两次和向下单击两次——就是这样,没有任何动作。我的目标是能够返回并多次单击上下。
$('#tmbDown').css ('opacity', '.6');
var timesClickedUp = 0;
$('#tmbUp').bind('click', function (event) {
$("#tmbHolder").animate({"marginTop": "-=100px"}, "slow");
timesClickedUp++;
if (timesClickedUp >= 2) {
$(this).unbind(event);
$('#tmbDown').css ('opacity', '1');
$('#tmbUp').css ('opacity', '.6');
}
});
var timesClickedDown = 0;
$('#tmbDown').bind('click', function (event) {
$("#tmbHolder").animate({"marginTop": "+=100px"}, "slow")
timesClickedDown++;
if (timesClickedDown >= 2) {
$(this).unbind(event);
$('#tmbDown').css ('opacity', '.6');
$('#tmbUp').css ('opacity', '1');
}
});