이 기사의 예에서는 jQuery가 페이드아웃을 사용하여 요소의 페이딩 효과를 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
다음 JS 코드는 컬러 블록 요소의 점진적 숨김을 제어하는 jQuery의 효과를 보여 주며, 숨김 속도를 제어할 수 있습니다
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").fadeOut(); $("#div2").fadeOut("slow"); $("#div3").fadeOut(3000); }); }); </script> </head> <body> <p>Demonstrate fadeOut() with different parameters.</p> <button>Click to fade out boxes</button> <br><br> <div id="div1" style="width:80px;height:80px;background-color:red;"> </div><br> <div id="div2" style="width:80px;height:80px;background-color:green;"> </div><br> <div id="div3" style="width:80px;height:80px;background-color:blue;"> </div> </body> </html>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.