본문 바로가기
프로그래밍/jQuery

jQuery 쉽게하기 - API 깨부시기, 선택자(Selector) : ":animated"

by zoo10 2011. 1. 20.

":animated" 는 화면에서 움직이는 요소를 찾아내는 선택자입니다.

원문 링크 http://api.jquery.com/animated-selector/

animated selector

개요 : 화면에서 움직이는(animated) 요소를 찾아줍니다.

예 제
화면에서 움직이는 요소를 찾아 색깔을 바꿔 줍니다.

<!DOCTYPE html>
<html>
<head>
  <style>
  div { background:yellow; border:1px solid #AAA; width:80px; height:80px; margin:0 5px; float:left; }
  div.colored { background:green; }
  </style>
  <script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
  <button id="run">Run</button>

  <div></div>
  <div id="mover"></div>
  <div></div>
<script>

    $("#run").click(function(){
      $("div:animated").toggleClass("colored");
    });
    function animateIt() {
      $("#mover").slideToggle("slow", animateIt);
    }
    animateIt();
</script>

</body>
</html>

미리보기

 

와. 간단하네요. jQuery 좋지 않으세요? ^^.

그럼 즐프하세요.