使用JavaScript / jQuery为网站创夜间/高亮模式

2021-01-07 10:30

阅读:726

标签:name   夜间模式   set   lan   cli   document   computer   ali   ddc   

创建夜间/高亮模式的步骤:

  • 创建一个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 Modetitle>
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">OFFspan> div>
div> h1>GeeksforGeeksh1> p>i>A Computer Science Portal for Geeksi>p> h3>Light and Dark Modeh3>
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 Modetitle>
    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>GeeksforGeeksh1>     p>i>A Computer Science Portal for Geeksi>p>     h3>Light and Dark Modeh3>     button onclick="myFunction()">Switch modebutton>
    script>         function myFunction() {         var element = document.body;         element.classList.toggle("dark");         } script> body>
html>

 

使用JavaScript / jQuery为网站创夜间/高亮模式

标签:name   夜间模式   set   lan   cli   document   computer   ali   ddc   

原文地址:https://www.cnblogs.com/xiewangfei123/p/12972884.html


评论


亲,登录后才可以留言!