0

我有这个 jquery -

(function(){

jQuery(window).bind('touchstart', function(){
    $('#email-info').fadeOut('2400', function() {
    });  
});

jQuery(window).bind('touchend', function(){
    $('#email-info').delay('2800').fadeIn('2400', function() {
    });    
});

})();  

效果很好,但是如果我在手机处于“延迟”状态时触摸手机,它会再次快速淡入/淡出。

有没有办法阻止这种情况?

4

2 回答 2

1

你试过用.stop()

http://api.jquery.com/stop/

于 2012-05-28T20:09:15.457 回答
1
jQuery(window).bind('touchend', function(){
    $('#email-info').delay('2800').stop(false,false).fadeIn('2400', function() {
    });
于 2012-05-28T20:21:08.267 回答