小编这次要给大家分享的是JavaScript或jQuery如何实现网站夜间/高亮模式,文章内容丰富,感兴趣的小伙伴可以来了解一下,希望大家阅读完这篇文章之后能够有所收获。
创建夜间/高亮模式的步骤:
创建一个HTML文档。
为文档文件以及黑暗模式创建CSS。
添加一个开关转换器按钮,以在明暗模式之间进行切换。
使用javascript或jQuery代码向开关转换器添加功能,以在明暗模式之间切换。
示例1:以下示例演示了使用JQuery代码在明暗模式之间进行切换。它基本上通过使用函数hasClass(),addClass()和removeClass()方法来工作。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Dark Mode </title> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"> </script> <style> body{ padding:10% 3% 10% 3%; text-align:center; } img{ height:140px; width:140px; } h2{ color: #32a852; } .mode { float:right; } .change { cursor: pointer; border: 1px solid #555; border-radius: 40%; width: 20px; text-align: center; padding: 5px; margin-left: 8px; } .dark{ color: #e6e6e6; } </style> </head> <body> <div class="mode"> Dark mode: <span class="change"> OFF </span> </div> <div> <h2> GeeksforGeeks </h2> <p> <i> A Computer Science Portal for Geeks </i> </p> <h4> Light and Dark Mode </h4> <img src="https://cache.yisu.com/upload/information/20200622/114/1684.png"> <p> Click on the switch on top-right to move to dark mode. </p> </div> <script> $(".change").on("click", function() { if ($("body").hasClass("dark")) { $("body").removeClass("dark"); $(".change").text("OFF"); } else { $("body").addClass("dark"); $(".change").text("ON"); } }); </script> </body> </html>
示例2:以下示例演示了通过在JavaScript代码中使用toggle()函数在高亮模式和夜间模式之间进行切换。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Dark Mode </title> <style> body{ padding:0% 3% 10% 3%; text-align:center; } h2{ color: #32a852; margin-top:30px; } button{ cursor: pointer; border: 1px solid #555; text-align: center; padding: 5px; margin-left: 8px; } .dark{ color: #e6e6e6; } </style> </head> <body> <h2> GeeksforGeeks </h2> <p> <i> A Computer Science Portal for Geeks </i> </p> <h4> Light and Dark Mode </h4> <button onclick="myFunction()"> Switch mode </button> <script> function myFunction() { var element = document.body; element.classList.toggle("dark"); } </script> </body> </html>
看完这篇关于JavaScript或jQuery如何实现网站夜间/高亮模式的文章,如果觉得文章内容写得不错的话,可以把它分享出去给更多人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。