0

这个问题似乎很奇怪,我检查了我的代码的替换,但它们都给出了同样的问题。一种替代品可以是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);
});
4

2 回答 2

1

http://jsfiddle.net/arXnZ/

问题在于使用 $(document).mouseup()

你应该做类似的事情:

$('#popUpInnerArrowRight, #popUpInnerArrowLeft ').mouseup(function(){
    clearInterval(stillDown);
});

检查小提琴以获取有关如何执行此操作的完整示例。

于 2013-08-08T17:13:06.467 回答
1

在这里它适用于我,http://jsfiddle.net/2rfm5/19/

而我只是变了,

    $(".thumbsInnerContainer").animate({
        right: '+=10px'
    });

    $(".thumbsInnerContainer").animate({
        left: '+=10px'
    });
于 2013-08-08T18:18:55.247 回答