P

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

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

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,366
PHP 17-04-04 조회 2,867
jQuery 17-04-03 조회 1,780
jQuery 17-04-03 조회 2,303
jQuery 17-04-03 조회 1,867
node.js 17-03-29 조회 3,894
jQuery 17-03-29 조회 2,182
jQuery 17-03-29 조회 2,143
jQuery 17-03-29 조회 2,042
jQuery 17-03-28 조회 2,096
jQuery 17-03-28 조회 2,483
PHP 17-03-28 조회 2,307
PHP 17-03-28 조회 1,914
PHP 17-03-28 조회 2,113
jQuery 17-03-27 조회 3,218
jQuery 17-03-27 조회 1,879
jQuery 17-03-27 조회 1,775
jQuery 17-03-26 조회 2,143
jQuery 17-03-26 조회 2,097
jQuery 17-03-26 조회 2,278
jQuery 17-03-23 조회 2,071
jQuery 17-03-23 조회 2,030
jQuery 17-03-23 조회 2,021
jQuery 17-03-22 조회 2,088
jQuery 17-03-22 조회 2,305
jQuery 17-03-22 조회 1,954
jQuery 17-03-20 조회 2,135
jQuery 17-03-20 조회 2,391
jQuery 17-03-20 조회 1,958
jQuery 17-03-18 조회 2,284