• 회원가입
  • 로그인
  • 구글아이디로 로그인

[Effect] JQ - clearQueue() 메서드 - 선택요소에서 실행 대기 함수 모두 제거/삭제. (= clearQueue메서드 = 클리어큐메서드)

목차
  1. clearQueue() 예제 - 실행 대기 중인 메서드 모두 제거.
  2. clearQueue() 정의
  3. clearQueue() 구문
  4. clearQueue() 예제 - 대기열 관련 메서드를 한번에 사용하기.

 

clearQueue() 예제 - 실행 대기 중인 메서드 모두 제거.

 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<script> 

$(document).ready(function(){

  $("#start").click(function(){

    $("div").animate({height: 300}, 1000);

    $("div").animate({width: 300}, 1000);

    $("div").animate({height: 100}, 1000);

    $("div").animate({width: 100}, 1000);

  });

  $("#stop").click(function(){

    $("div").clearQueue();

  });

});

</script> 


<button id="start">animate</button>

<button id="stop">clearQueue</button><br><br>

<div style="background:red;height:100px;width:100px;"></div>

 

 

clearQueue() 정의

 

아직 실행 안 된 모든 항목을 대기열에서 제거.

※ 함수 실행 시작 시, 완료 될 때까지 작동함.

※ Queue : ''라고 발음. 실행 대기열 의미.



[관련 queue 메서드]

 

queue() 메서드

: 대기열의 함수 표시.

 

dequeue() 메서드

: 대기열의 다음 함수 제거 후, 다음 함수를 실행.

 


[stop() vs. clearQueue()]

 

stop() 메서드

: slide, animate 등 animation에서만 작동.

 

clearQueue() 메서드

: 모든 함수에 대해서 작동.

 

 

clearQueue() 구문

 

$(selector).clearQueue(queueName)

 


[매개변수]

 

queueName

선택. 대기열 이름 지정. (기본값: fx)

※ fx : 표준 효과 대기열. (the standard effects queue)

 

 

clearQueue() 예제 - 대기열 관련 메서드를 한번에 사용.

 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<script> 

$(document).ready(function(){

  var div = $("div");

  $("#start").click(function(){

    div.animate({height: 300}, "slow");

    div.animate({width: 300}, "slow");

    div.queue(function () {

      div.css("background-color", "red");  

      div.dequeue();

    });

    div.animate({height: 100}, "slow");

    div.animate({width: 100}, "slow");

  });

  $("#stop").click(function(){

    div.clearQueue();

  });

});

</script> 


<button id="start">start</button>

<button id="stop">stop</button><br><br>

<div style="background:pink;height:100px;width:100px;position:relative"></div>

 

결과보기

 

방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
HTML_CSS JQ - insertBefore() 메서드 - 선택요소 앞에 요소삽입/요소추가. (= insertBefore…
HTML_CSS JQ - offset() 메서드 ★ - 오프셋 (=xy좌표) 설정/반환. (= offset메서드 = 오프셋메…
HTML_CSS JQ - outerHeight() 메서드 - 요소 높이 반환 (height + padding + border…
HTML_CSS JQ - outerWidth() 메서드 - 요소 너비 반환 (※ padding, border 둘다 포함) (…
HTML_CSS JQ - position() 메서드 - 부모요소 기준으로 요소 위치 반환 (= position메서드 = 포지…
HTML_CSS JQ - prepend() 메서드 - 선택요소 안 시작부분에 내용 삽입 (= prepend메서드 = 프리펜드…
HTML_CSS JQ - prependTo() 메서드 - 선택요소 시작부분에 HTML 요소삽입 (= prependTo메서드 …
HTML_CSS JQ - prop() 메서드 - 속성과 속성값 설정/반환. (= prop메서드 = 프랍메서드 = 프롭메서드)…
HTML_CSS JQ - remove() 메서드 - 선택요소 제거 (= remove메서드 = 리무브 메서드)
HTML_CSS JQ - removeAttr() 메서드 - 1개 이상의 속성 제거 (= removeAttr메서드 = 리무브어…
HTML_CSS JQ - removeClass() 메서드 ★ - 클래스 제거 (= removeClass메서드 = 리무브클래스…
HTML_CSS JQ - removeProp() 메서드 - prop() 메서드로 설정된 속성 제거. (= removeProp…
HTML_CSS JQ - replaceAll() 메서드 - 선택요소를 새 HTML 요소로 대체 (= replaceAll메서드…
HTML_CSS JQ - replaceWith() 메서드 ★ - 선택요소 내용를 새 내용으로 대체/변경 (= replaceW…
HTML_CSS JQ - scrollLeft() 메서드 - 선택요소 가로 스크롤바 위치 설정/반환 (= scrollLeft메…
HTML_CSS JQ - scrollTop() 메서드 ★ - 선택요소 세로 스크롤바 위치 설정/반환 (= scrollTop메…
HTML_CSS JQ - text() 메서드 - 선택요소 텍스트 내용설정/내뇽변경/내용반환. (= text메서드 = 텍스트메…
HTML_CSS JQ - toggleClass() 메서드 ★★★ - 클래스추가/제거 상호전환. (= toggleClass메서…
HTML_CSS JQ - unwrap() 메서드 - 부모요소 제거 (= unwrap메서드 = 언랩 메서드)
HTML_CSS JQ - val() 메서드 ★★★ - value속성 값설정/값반환 (= val메서드 = 밸메서드) ※ 밸류메…
10/15
목록
찾아주셔서 감사합니다. Since 2012