我有一个包含Drupal 8和Bootstrap 3.3.7的站点
如何集成切换按钮?
我想在其中嵌入一个带有可自定义文本的圆形按钮。
我在Google上进行了一些研究,发现只有旧版本的引导程序才包含旧库。
这里是一个例子:
答案 0 :(得分:1)
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代码来添加文本。
答案 1 :(得分:0)
看起来需要开关
<!-- Default checked -->
<label class="bs-switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
这是一个标准的引导程序组件,因此您只需要此代码并根据您的外观修改标签。
还阅读了此链接,其中有很多关于交换机https://mdbootstrap.com/components/bootstrap-switch/的资源