jquery 애니메이션 선택기 통사론
기능: :애니메이션 선택기는 현재 애니메이션된 모든 요소를 선택합니다.
구문: $(":animated")
jquery 애니메이션 선택기 예
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ function aniDiv(){ $("#box").animate({width:300},"slow"); $("#box").animate({width:100},"slow",aniDiv); } aniDiv(); $(".btn1").click(function(){ $(":animated").css("background-color","blue"); }); }); </script> <style> div { background:#98bf21; height:40px; width:100px; position:relative; margin-bottom:5px; } </style> </head> <body> <div></div> <div id="box"></div> <div></div> <button class="btn1">Mark animated element</button> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요