Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 웹사이트에 어둡게/밝게 모드를 만드는 방법

<시간/>

페이지의 텍스트 색상과 배경 색상을 변경하여 웹사이트에 어둡거나 밝은 모드를 추가할 수 있습니다.

구문

다음 구문을 사용하여 다크 모드를 적용할 수 있습니다.

Selector {
   color: white;
   background-color: black
}

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            font-size: 1.4em;
            text-align: center;
         }
         .dark {
            color: white;
            background-color: black;
         }
      </style>
   </head>
   <body>
      <div>
         <p>Suspendisse eget finibus nulla, a pulvinar est. Suspendisse eget eleifend nibh. In nec massa molestie, vehicula sapien a, consectetur nunc. Aenean at nisl vulputate mi scelerisque commodo nec et mauris. Duis tincidunt auctor posuere.</p>
         <button id="btn" onclick="change()">Normal Mode</button>
      </div>
      <script>
         let btnText = document.getElementById("btn");
         function change() {
            let btn = document.body;
            btn.classList.toggle("dark");
            if (btnText.innerHTML === "Normal Mode") {
               btnText.innerHTML = "Dark Mode!";
            } else {
               btnText.innerHTML = "Normal Mode";
            }}
      </script>
   </body>
</html>

이것은 다음과 같은 출력을 제공합니다.

CSS를 사용하여 웹사이트에 어둡게/밝게 모드를 만드는 방법

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            font-size: 1.4em;
            text-align: center;
         }
         .dark {
            color: white;
            background-color: black;
         }
      </style>
   </head>
   <body>
      <div>
         <button id="btn" onclick="change()">Normal Mode</button>
         <p>Duis tincidunt auctor posuere.</p>
         <img src="https://images.unsplash.com/photo-1610718055968-4e3cf23d96db?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=200&ixlib=rb-1.2.1&q=80&w=200" />
      </div>
      <script>
         let btnText = document.getElementById("btn");
         function change() {
            let btn = document.body;
               btn.classList.toggle("dark");
               if (btnText.innerHTML === "Normal Mode") {
                  btnText.innerHTML = "Dark Mode!";
               } else {
                  btnText.innerHTML = "Normal Mode";
            }}
      </script>
   </body>
</html>

이것은 다음과 같은 출력을 제공합니다.

CSS를 사용하여 웹사이트에 어둡게/밝게 모드를 만드는 방법

CSS를 사용하여 웹사이트에 어둡게/밝게 모드를 만드는 방법