我正在我的网站上工作并希望包含一个小的切换开关,可以将样式表更改为主题的黑暗版本。
我一直无法找到如何归档这个以便切换开关保存一个cookie,如果cookie说明了"暗模式"它将进入黑暗的主题,如果没有,回到光明主题。
我当前的代码已经能够启用黑色主题了,但我无法保存/使用cookie,因为我没有足够的经验来使用JavaScript。
$('#mode').change(function(){
if ($(this).prop('checked'))
{
$('body').addClass('dark-mode');
}
else
{
$('body').removeClass('dark-mode');
}
});

/* Light Theme Style */
h1 {
color: #34495e;
font-family: montserrat;
}
p {
color: #2c3e50;
font-family: montserrat;
}
/* Dark Theme Style */
body.dark-mode {
background: #2c3e50;
}
.dark-mode h1 {
color: #ecf0f1;
}
.dark-mode p {
color: #bdc3c7;
}
/* Toggle Switch Style*/
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {display:none;}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<style>
@import 'https://fonts.googleapis.com/css?family=Montserrat';
</style>
<label for="mode" class="switch">
<input id="mode" type="checkbox">
<div class="slider round"></div>
</label>
<h1>Hello!</h1>
<p>This is where my page content will be.</p>
&#13;