如何将切换按钮集成到 Bootstrap 3.3.7?
How to integrate toggle button to Bootstrap 3.3.7?
我有一个使用 Drupal 8 和 Bootstrap 3.3.7
的站点
如何集成切换按钮?
我想嵌入一个带有自定义文本的圆形按钮。
我在 Google 中做了一些研究,发现只有旧版本的 bootstrap 的旧库。
这是一个例子:
HTML:
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
CSS:
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {display:none;}
.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%;
}
您也可以通过执行和操作 JS 代码来添加文本。
看来你需要一个开关
<!-- Default checked -->
<label class="bs-switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
这是一个标准的 bootstrap 组件,因此您只需要这段代码并根据您想要的外观修改标签。
另请阅读此 link 它有很多开关资源 https://mdbootstrap.com/components/bootstrap-switch/
我有一个使用 Drupal 8 和 Bootstrap 3.3.7
的站点如何集成切换按钮?
我想嵌入一个带有自定义文本的圆形按钮。
我在 Google 中做了一些研究,发现只有旧版本的 bootstrap 的旧库。
这是一个例子:
HTML:
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
CSS:
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {display:none;}
.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%;
}
您也可以通过执行和操作 JS 代码来添加文本。
看来你需要一个开关
<!-- Default checked -->
<label class="bs-switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
这是一个标准的 bootstrap 组件,因此您只需要这段代码并根据您想要的外观修改标签。
另请阅读此 link 它有很多开关资源 https://mdbootstrap.com/components/bootstrap-switch/