这个问题似乎很奇怪,我检查了我的代码的替换,但它们都给出了同样的问题。一种替代品可以是Jquery: mousedown 效果(按住左键时)。我正在尝试制作一个滑块,将图像的拇指向右或向左滑动。然后人们可以从拇指中选择并单击他想要的图像,它将显示出来。拇指可以左右滑动。问题是单击右键后图像不会再次向左滑动,我认为这是 clearinterval 的东西。这是小提琴,http://jsfiddle.net/2rfm5/18/ 单击右箭头后,左滑动效果将不起作用。
$("#popUpInnerArrowLeft").mousedown(function(event) {
movetoleft();
});
var into ,into2 ;
function movetoleft() {
function moveit() {
$(".thumbsInnerContainer").animate({right:'+=10px'});
}
into = setInterval(function() { moveit(); }, 500);
}
$(document).mouseup(function(event) {
clearInterval(into);
});
//for the right arrow
$("#popUpInnerArrowRight").mousedown(function(event) {
movetoright();
});
function movetoright() {
function moveit2() {
$(".thumbsInnerContainer").animate({left:'+=10px'});
}
into2 = setInterval(function() { moveit2(); }, 500);
}
$(document).mouseup(function(event) {
clearInterval(into2);
});