效果图


根据需求可知,
Switch开关只有两种选择,true或false。
所以我们想到HTML的checkbox控件来实现。
源码
HTML
<input id="switch" type="checkbox" class="switch">
CSS
/* Switch开关样式 */
/* 必须是input为 checkbox class 添加 switch 才能实现以下效果 */
input[type='checkbox'].switch{
outline: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
position: relative;
width: 40px;
height: 20px;
background: #ccc;
border-radius: 10px;
transition: border-color .3s, background-color .3s;
}
input[type='checkbox'].switch::after {
content: '';
display: inline-block;
width: 1rem;
height:1rem;
border-radius: 50%;
background: #fff;
box-shadow: 0, 0, 2px, #999;
transition:.4s;
top: 2px;
position: absolute;
left: 2px;
}
input[type='checkbox'].switch:checked {
background: rgb(19, 206, 102);
}
/* 当input[type=checkbox]被选中时:伪元素显示下面样式 位置发生变化 */
input[type='checkbox'].switch:checked::after {
content: '';
position: absolute;
left: 55%;
top: 2px;
}
ok,完成,快去实现吧。
本文介绍如何使用HTML和CSS创建一个简单的Switch开关效果。通过设置checkbox控件样式,实现开关状态切换时背景颜色及滑块位置的变化。


被折叠的 条评论
为什么被折叠?



