}$(에니메이트맥여줄거).animate();
여러번X한번해주고 끝나는애.
기본적으로 duration들어있음 0.4초인가 0.3초인가 그렇다함
$(function(){
$("#box").animate({ "margin-left":"300px"}, 1200);
});
$(function(){
$("#box").animate({marginLeft:"300px"}, 1200);
});
두개적용하고시프면
$(function(){
$("#box").animate({"background-color":"red", "margin-left":"300px"},1200);
});
이러케하면됨 오옹
'공부하는 징뉴 > 퍼블' 카테고리의 다른 글
제이쿼리 easing이랑 transform... (0) | 2019.01.21 |
---|---|
easing (0) | 2019.01.21 |
제이쿼리로 css넣을때/animate줄때 (0) | 2019.01.21 |
제이쿼리0116 (0) | 2019.01.21 |
제이쿼리_인접선택자 (0) | 2019.01.14 |