P

jQuery w3schools 한글판 강좌39 - jQuery Effects -Animation -jQuery animate() -Uses Queue Functionality

· 8년 전 · 1860

jQuery w3schools 한글판 강좌39 - jQuery Effects -Animation -jQuery animate() -Uses Queue Functionality

 

jQuery animate() - Queue기능 이용하기

디폴트(기본) 값으로 jQuery 는 애니메이션(동작)에 대해 큐 기능을 가집니다.

즉, 만일 여러분이 여러개의  animate() 을 연이어서 부른다면,  

jQuery는 이러한 메소드의 호출에 내부의 큐를 생성합니다.

그러면 그것은 동작 콜들을 하나씩 실행합니다.

 

따라서, 만일 당신이 서로다른 동작들을 차례로 수행하기를 원하면,  

우리는 큐 기능의 잇점을 활용합니다.

 

Example 1

$("button").click(function(){
    var div = $("div");
    div.animate({height: '300px', opacity: '0.4'}, "slow");
    div.animate({width: '300px', opacity: '0.8'}, "slow");
    div.animate({height: '100px', opacity: '0.4'}, "slow");
    div.animate({width: '100px', opacity: '0.8'}, "slow");
});   

 

아래예는 처음에는 <div>요소를 우측으로 움직이며, 그리고 글자크기를 증가 시킵니다 :

Example 2

$("button").click(function(){
    var div = $("div");
    div.animate({left: '100px'}, "slow");
    div.animate({fontSize: '3em'}, "slow");
}); 


 

 

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,867
jQuery 8년 전 조회 2,221
PHP 8년 전 조회 2,039
PHP 8년 전 조회 1,659
PHP 8년 전 조회 1,844
jQuery 8년 전 조회 2,952
jQuery 8년 전 조회 1,624
jQuery 8년 전 조회 1,541
jQuery 8년 전 조회 1,881
jQuery 8년 전 조회 1,849
jQuery 8년 전 조회 2,040
jQuery 8년 전 조회 1,840
jQuery 8년 전 조회 1,785
jQuery 8년 전 조회 1,808
jQuery 8년 전 조회 1,861
jQuery 8년 전 조회 2,061
jQuery 8년 전 조회 1,724
jQuery 8년 전 조회 1,883
jQuery 8년 전 조회 2,143
jQuery 8년 전 조회 1,711
jQuery 8년 전 조회 2,028
jQuery 8년 전 조회 2,531
jQuery 8년 전 조회 2,128
PHP 8년 전 조회 3,983
jQuery 8년 전 조회 2,004
jQuery 8년 전 조회 2,066
jQuery 8년 전 조회 1,899
jQuery 8년 전 조회 2,856
PHP 8년 전 조회 2,134
PHP 8년 전 조회 1,993