w

그누보드 다크모드 만들기 PHP & Javascript

<?php $themeClass = ''; if (!empty($_COOKIE['theme'])) { if ($_COOKIE['theme'] == 'dark') { $themeClass = 'dark-theme'; } else if ($_COOKIE['theme'] == 'light') { $themeClass = 'light-theme'; } } ?>

 

위 소스코드를 head.php 에 넣어주시고

 <body class="<?php echo $themeClass; ?>">

 

테마의 head.php 나 head.sub.php 에 body 태그를 찾아서 class 에 넣어주세요.

 

원하는 다크모드 on off 하는 버튼 넣어주세요.

<script> const btn = document.querySelector(".btn-toggle"); const prefersDarkScheme = window.matchMedia("(prefers-color-scheme: dark)"); btn.addEventListener("click", function() { if (prefersDarkScheme.matches) { document.body.classList.toggle("light-mode"); var theme = document.body.classList.contains("light-mode") ? "light" : "dark"; } else { document.body.classList.toggle("dark-mode"); var theme = document.body.classList.contains("dark-mode") ? "dark" : "light"; } document.cookie = "theme=" + theme; }); </script> 

 

css 에서 light 나 dark 속성을 이용해서 만드시면 됩니다..

 

ex)

.light button { .... }

.light .calendar { ... }

|

댓글 4개

수고가 많으셨습니다.
좋은정보 감사 드려요.
좋은 팁이네요..
안되는것 같아요 ㅠㅠ
@문선생 css는 직접 만드셔야죠
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
4년 전 조회 5,827
4년 전 조회 3,022
4년 전 조회 3,697
4년 전 조회 3,122
4년 전 조회 3,890
4년 전 조회 3,571
4년 전 조회 2,597
4년 전 조회 5,012
4년 전 조회 4,130
4년 전 조회 3,794
4년 전 조회 3,728
4년 전 조회 5,041
4년 전 조회 3,643
4년 전 조회 3,485
4년 전 조회 4,874
4년 전 조회 6,248
4년 전 조회 5,838
4년 전 조회 4,934
4년 전 조회 7,364
4년 전 조회 2,917
4년 전 조회 3,565
4년 전 조회 4,852
4년 전 조회 3,983
4년 전 조회 3,653
4년 전 조회 5,676
4년 전 조회 2,836
4년 전 조회 8,187
4년 전 조회 5,553
4년 전 조회 4,194
4년 전 조회 5,800