제이쿼리 animate 질문드립니다.
본문
$(document).ready(function() {
$(window).scroll(function(){
var scroll = $(window).scrollTop();
if (scroll >= 200){
$('#b').animate({left:'+200'},500);
$('#a').animate({top:'0'},500);
}else{
$('#b').animate({left:'0'},500);
$('#a').animate({top:'-50'},500);
}
});
});
스크롤 아래로 했을때
animate 해서 나오게 하는걸 짯는데, 동시에 말고 순차적으로 animate작동하게 하려면 어떻게 해야할까요??
답변 1
이걸 참고했을때....
$('#b').animate({left:'+200'},500,null, function(){$('#a').animate({top:'0'},500)});
이런식으로 넣어보시는건 어떨까요..?
답변을 작성하시기 전에 로그인 해주세요.