2019-08-21
描述
使用纯 CSS 构建一个可切换的开关。
HTML
<input type="checkbox" id="toggle" class="offscreen" /> <label for="toggle" class="switch"></label>
CSS
.switch {
position: relative;
display: inline-block;
width: 40px;
height: 20px;
background-color: rgba(0, 0, 0, 0.25);
border-radius: 20px;
transition: all 0.3s;
}
.switch::after {
content: '';
position: absolute;
width: 18px;
height: 18px;
border-radius: 18px;
background-color: white;
top: 1px;
left: 1px;
transition: all 0.3s;
}
input[type='checkbox']:checked + .switch::after {
transform: translateX(20px);
}
input[type='checkbox']:checked + .switch {
background-color: #7983ff;
}
.offscreen {
position: absolute;
left: -9999px;
}
Demo
说明
这个效果只能把开关的样式使用到 <label>
元素上,让 label 标签看上去像一个开关。然后通过把 <input>
复选框定位到屏幕外,让用户看不到他的存在。当点击 label 的时候就会关联到 <input>
元素,进而可以改变 <input>
复选框上的 :checked
属性。
- 当
<label>
中的for
属性值和<input>
选中框元素中的id
属性值相等时,就可以将两者进行关联
attribute associates the<label>
with the appropriate<input>
checkbox element by itsid
. .switch::after
为<label>
创建了一个伪元素,用来做为开关的圆形按钮input[type='checkbox']:checked + .switch::after
当复选框选中时,定义其后<label>
中伪元素的样式transform: translateX(20px)
当复选框选中时,把伪元素(圆形按钮)向右移动 20 pxbackground-color: #7983ff;
当复选框选中时,让开关开启的背景色和未开启的背景色不同.offscreen
由于真实可见的开关中并不需要<input>
复选框元素的展现,因此需要把他脱离文档流并定位到远离视图的地方去。但我们不能隐藏他,否则键盘和屏幕阅读器就无法访问到他了transition: all 0.3s
当任何属性发生变化时,都将使用 0.3 秒对其进行过渡。因此当复选框被选中时,<label>
的background-color
和伪元素的transform
属性都会发生过渡效果
浏览器支持
支持率:97.7%
支持情况:https://caniuse.com/#feat=transforms2d
⚠️:所有支持需要前缀