基于JavaScript或jQuery实现网站夜间/高亮模式
程序员文章站
2022-04-09 16:06:36
创建夜间/高亮模式的步骤:创建一个html文档。为文档文件以及黑暗模式创建css。添加一个开关转换器按钮,以在明暗模式之间进行切换。使用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; } h1{ 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> <h1> geeksforgeeks </h1> <p> <i> a computer science portal for geeks </i> </p> <h3> light and dark mode </h3> <img src="https://media.geeksforgeeks.org/wp-content/uploads/20200122115631/geeksforgeeks210.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; } h1{ 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> <h1> geeksforgeeks </h1> <p> <i> a computer science portal for geeks </i> </p> <h3> light and dark mode </h3> <button onclick="myfunction()"> switch mode </button> <script> function myfunction() { var element = document.body; element.classlist.toggle("dark"); } </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JS实现前端路由功能示例【原生路由】