.switch-container {
height: 25px;
width: 60px;
margin-left: 150px;
margin-top: -23px;
}
.switch {
display: none;
}
label {
display: block;
background-color: #EEEEEE;
height: 100%;
width: 100%;
cursor: pointer;
border-radius: 25px;
}
label:before {
content: '';
display: block;
border-radius: 25px;
height: 100%;
width: 24px;
background-color: white;
opacity: 1;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
-webkit-transition: all 0.2s ease;
}
label:after {
position: relative;
top: -25px;
left: 36px;
content: '';
display: block;
border-radius: 25px;
height: 100%;
width: 24px;
background-color: white;
opacity: 0;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
-webkit-transition: all 0.2s ease;
}
p~ul :位于 p 元素之后的所有 ul 元素
*/
#switch:checked~label:after {
opacity: 1;
}
#switch:checked~label:before {
opacity: 0;
}
#switch:checked~label {
background-color: green;
}