css 样式复选框作为切换按钮 Posted 2021-05-13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 样式复选框作为切换按钮相关的知识,希望对你有一定的参考价值。
<!-- HTML code for one toggle button (checkbox): -->
<input id="checkbox1" type="checkbox" checked>
<label for="checkbox1" data-text-true="Yes" data-text-false="No"><i></i></label>
Do you want to learn CSS?
input[type=checkbox] {
display: none;
}
input[type=checkbox] + label {
display: inline-block;
background-color: #DB574D;
color: white;
font-family: sans-serif;
font-size: 14px;
font-weight: bold;
height: 30px;
line-height: 30px;
position: relative;
text-transform: uppercase;
width: 80px;
}
input[type=checkbox] + label,
input[type=checkbox] + label i {
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-o-transition: all 200ms ease;
transition: all 200ms ease;
}
input[type=checkbox]:checked + label {
background-color: #67B04F;
}
input[type=checkbox] + label:before,
input[type=checkbox] + label:after,
input[type=checkbox] + label i {
width: 50%;
display: inline-block;
height: 100%;
text-align: center;
}
input[type=checkbox] + label:before {
content: attr(data-text-true);
}
input[type=checkbox] + label:after {
content: attr(data-text-false);
}
input[type=checkbox] + label i {
top: 10%;
background-color: white;
height: 80%;
left: 5%;
position: absolute;
width: 45%;
}
input[type=checkbox]:checked + label i {
left: 50%;
}
以上是关于css 样式复选框作为切换按钮的主要内容,如果未能解决你的问题,请参考以下文章
将复选框更改为切换样式按钮
css 复选框为切换按钮CSS3
css实现iPhone的切换按钮
一个按钮切换两个css样式
简单的jquery模仿单选按钮效果
按钮在切换到暗/亮模式时更改 CSS 样式