이 기사에서는 js를 기반으로 전등 스위치 효과를 구현하는 간단한 코드를 공유합니다. 코드는 간단하고 이해하기 쉽고 매우 훌륭하며 필요한 친구가 참조할 수 있습니다.
더 이상 말도 안되는 코드입니다. , 코드를 직접 게시해 드리겠습니다. 구체적인 코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>开关灯</title> <style type="text/css"> html, body { margin: 0px; padding: 0px; width: 100%; height: 100%; cursor: pointer; background-color: white; } </style> </head> <body id="bodyEle"> <script type="text/javascript"> var oBody = document.getElementById("bodyEle"); oBody.onclick = function () { var bg = this.style.backgroundColor; switch (bg) { case "white": this.style.backgroundColor = "red"; break; case "red": this.style.backgroundColor = "black"; break; default: this.style.backgroundColor = "white"; } } </script> </body> </html>
위 내용은 스위치 효과의 JavaScript 구현을 위한 코드 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!