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