波多野结衣 蜜桃视频,国产在线精品露脸ponn,a v麻豆成人,AV在线免费小电影

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務,提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

深色模式對于任何網(wǎng)站都非常重要。不同興趣的用戶訪問網(wǎng)站。有些人喜歡深色模式,有些人喜歡淺色模式。

根據(jù)一項調(diào)查,大約 70% 到 80% 的人喜歡深色模式,只有 20% 到 30% 的人喜歡淺色模式。因此,有必要為任何網(wǎng)站創(chuàng)建一個深色模式,允許用戶在深色和淺色模式之間切換。

下面,我們將使用 HTML、CSS 和 JavaScript 創(chuàng)建一個簡單的網(wǎng)頁。此外,我們還將學習使用 JavaScript 和 CSS 實現(xiàn)明暗模式。

語法

用戶可以按照以下語法在深色和淺色主題之間切換。

body.classList.toggle("dark-theme");

登錄后復制

在上面的語法中,我們將深色主題類名作為切換方法的參數(shù)傳遞。它在特定的 HTML 元素中添加和刪除類。

算法

用戶可以按照以下算法在深色和淺色主題之間切換。

    第 1 步 – 為網(wǎng)頁編寫 HTML 代碼,并像往常一樣為淺色主題應用 CSS。

    第 2 步 – 使用 CSS 創(chuàng)建深色主題的樣式。

    第 3 步 – 創(chuàng)建一個按鈕,并在按鈕中添加 onclick 事件。當用戶單擊該按鈕時,它應該在深色和淺色主題之間切換。

    步驟 4 – 要在深色和淺色主題之間切換,我們可以從元素中添加和刪除特定的類。例如,為深色主題創(chuàng)建一個類,并為深色主題創(chuàng)建 CSS。當我們在body中添加dark-theme類時,深色主題應該應用于整個網(wǎng)站,當我們刪除它時,它應該是正常的。

    示例 1

    在下面的示例中,當用戶單擊按鈕時,我們調(diào)用changeMode()函數(shù)。 changeMode() 函數(shù)根據(jù)主題更改按鈕的文本。

    此外,我們使用 document.body 訪問整個網(wǎng)頁,并使用 JavaScript 將 dark-theme 類添加到整個網(wǎng)頁,以將主題更改為深色模式。

    <html>
    <head>
       <style>
          body {
             color: black;
             background-color: rgb(241, 241, 241);
             text-align: center;
             justify-content: center;
          }
          .dark-theme {
             color: white;
             background-color: rgb(26, 20, 20);
          }
          button {
             width: 13rem;
             height: 2rem;
             font-size: 1.5rem;
             background-color: aqua;
             border: none;
             border-radius: 12px;
          }
          p {
             font-size: 1.2rem;
          }
       </style>
    </head>
    <body>
       <h2>Using the <i> toggle method to </i> toggle between light and dark mode in JavaScript. </h2>
       <p>This is the content of the webpage. </p>
       <button onclick = "changeMode()" id = "button"> Dark Mode </button>
       <script>
          function changeMode() {
             var body = document.body;
             
             // toggle the theme
             body.classList.toggle("dark-theme");
             let button = document.getElementById('button');
             
             // change the button text
             if (button.innerHTML == "Dark Mode") {
                button.innerHTML = "Normal Mode";
             } else {
                button.innerHTML = "Dark Mode"
             }
          }
       </script>
    </body>
    </html>
    

    登錄后復制

    示例 2

    在下面的示例中,我們使用 HTML 和 CSS 創(chuàng)建了切換開關按鈕。我們使用了切換開關的復選框。因此,每當用戶選中該復選框時,開關就會打開。因此,我們可以根據(jù)是否選中該復選框來添加和刪除深色主題的類。

    此外,我們還使用了JQuery的addClass()和removeClass()方法來添加和刪除主體中的類。

    <html>
    <head>
       <style>
          body {
             color: black;
             background-color: rgb(241, 241, 241);
             text-align: center;
             justify-content: center;
          }
          .dark-class {
             color: white;
             background-color: rgb(12, 10, 10);
          }
          p {
             font-size: 1.2rem;
          }
          .toggleButton {
             width: 5rem;
             height: 2rem;
             position: relative;
             display: inline-block;
          }
          .toggleButton input {
             opacity: 0;
          }
          .roundButton {
             background-color: black;
             top: 0;
             left: 0;
             position: absolute;
             right: 0;
             bottom: 0;
             cursor: pointer;
          }
          .roundButton:before {
             left: 0;
             bottom: 0;
             position: absolute;
             content: "";
             background-color: grey;
             transition: 1s;
             height: 2rem;
             width: 2rem;
          }
          input:checked+.roundButton {
             background-color: white;
          }
          input:checked+.roundButton:before {
             transform: translateX(3rem);
          }
          .roundButton.circle {
             border-radius: 2rem;
          }
          .roundButton.circle:before {
             border-radius: 50%;
          }
       </style>
       <script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"
       Integrity = "sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ=="
       crossorigin = "anonymous" referrerpolicy = "no-referrer"> </script>
    </head>
    <body>
       <h2>Using the <i> JQuery </i> to toggle between light and dark modes in JavaScript.</h2>
       <p>This is the content of the webpage.</p>
       <label class = "toggleButton">
          <input type = "checkbox" id = "toggle">
          <div class = "roundButton circle" ></div>
       </label>
       <script>
          // If the input checkbox is checked, activate dark mode by adding dark-class to the body
          $('#toggle').change(() => {
             if ($('#toggle').is(":checked")) {
                $("body").addClass("dark-class");
             } else {
                $("body").removeClass("dark-class")
             }
          })
       </script>
    </body>
    </html>

    登錄后復制

    我們學會了使用 JavaScript 和 JQuery 在深色模式和淺色模式之間進行切換。我們需要更改網(wǎng)頁的 CSS 并將 CSS 應用于深色主題。我們可以通過在網(wǎng)頁中添加和刪除類來將 CSS 應用到暗模式。

    以上就是如何使用 JavaScript/jQuery 為網(wǎng)站創(chuàng)建暗/亮模式?的詳細內(nèi)容,更多請關注www.92cms.cn其它相關文章!

分享到:
標簽:jQuery 創(chuàng)建 如何使用 模式 網(wǎng)站
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定