他们的内置切换开关是HTML5吗



我一直在寻找一种在设计中加入切换开关的好方法。但是,在搜索标准方法时,我遇到的只是通过HTML和CSS的组合创建的切换开关。请参阅下面w3中的示例:

/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* 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%;
}
<!-- Rounded switch -->
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>

这是在HTML5中创建切换开关的唯一方法吗?

切换开关本质上是一个复选框,具有特定类型的样式。

两者都是二进制输入,因此将两者作为不同的HTML元素会有点多余。早在开关出现之前,复选框就已经是标准的了,在HTML中添加一个全新的元素来获得一个小的UI差异并没有多大意义。

希望能有所帮助!

最新更新