dimanche 26 octobre 2014

[JQUERY] Erst tun, wenn das eine getan wurde

Hey Community,

ich würde gerne eine DIV mit der ID "box" erst um 100 Pixel nach links verschieben lassen und erst danach die Box anzeigen lassen.



Wie wäre das richtig?



So:


Code:



$("#box").css({'margin-left': '-100px'});

$("#box").animate({'opacity': '1', 'top: 40%'}, 1000);



oder doch so:


Code:



$("#box").css({'margin-left': '-100px'}, function(){

$("#box").animate({'opacity': '1', 'top: 40%'}, 1000);

});



Danke im Voraus!





[JQUERY] Erst tun, wenn das eine getan wurde

Aucun commentaire:

Enregistrer un commentaire