P

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

· 2017-03-22 (수) 20:15:18 · 2075

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");
}); 


 

 

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
PHP 17-04-04 조회 2,351
PHP 17-04-04 조회 2,857
jQuery 17-04-03 조회 1,771
jQuery 17-04-03 조회 2,293
jQuery 17-04-03 조회 1,852
node.js 17-03-29 조회 3,879
jQuery 17-03-29 조회 2,175
jQuery 17-03-29 조회 2,133
jQuery 17-03-29 조회 2,033
jQuery 17-03-28 조회 2,084
jQuery 17-03-28 조회 2,473
PHP 17-03-28 조회 2,295
PHP 17-03-28 조회 1,905
PHP 17-03-28 조회 2,100
jQuery 17-03-27 조회 3,207
jQuery 17-03-27 조회 1,869
jQuery 17-03-27 조회 1,766
jQuery 17-03-26 조회 2,130
jQuery 17-03-26 조회 2,087
jQuery 17-03-26 조회 2,270
jQuery 17-03-23 조회 2,061
jQuery 17-03-23 조회 2,021
jQuery 17-03-23 조회 2,011
jQuery 17-03-22 조회 2,076
jQuery 17-03-22 조회 2,295
jQuery 17-03-22 조회 1,943
jQuery 17-03-20 조회 2,122
jQuery 17-03-20 조회 2,378
jQuery 17-03-20 조회 1,948
jQuery 17-03-18 조회 2,268