2013-06-19 139 views
0

我使用下面的jQuery創建滾動效果。它也激活了邊界。但動畫完成後,我希望它再次回到默認狀態,以便它再沒有邊框。完成後移除動畫

$('#scroll').click(function(){ 
    $(".scroll").animate({ 
     borderWidth: "3px" 
    }, 3000); 
}); 

$('#scroll').click(function(){ 
    var delay = 3000; 
    setTimeout(function() { 
     $('.vluchtelinginfo').scrollTo('+=100px', 800); 
    }, delay);      
}); 

回答

1

試試看看這個代碼。

$('#scroll').click(function(){ 
    $(".scroll").animate({ 
     borderWidth: "3px" 
    }, 3000,function(){ 
      $('.scroll').css('borderWidth',''); 
    }); 
});