私は ajax アニメーションを試しています。初めてのコンテンツは animate margin-left:200px ですが、アニメーションの後、別のコンテンツが読み込まれません。
これは私のコードです
$.ajax({
url:url,
beforeSend: function(){
$('.slide_loader').show();
},
success:function(content){
$('#right_content').animate({
'margin-left' : '200px'
}, 500);
$('#right_content').html(content);
$('.slide_loader').hide();
return false;
}
});