帮我写一个基于jq且其中有启用和停用的蓝色switch开关
时间: 2024-02-18 13:02:06 浏览: 78
好的,请参考以下代码:
HTML代码:
```html
<div id="switch-container">
<label class="switch">
<input type="checkbox" id="switch">
<span class="slider round"></span>
</label>
</div>
```
CSS代码:
```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: #fff;
-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);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
```
JS代码:
```javascript
$(function() {
// 获取开关元素
var switchBtn = $('#switch');
// 绑定开关事件
switchBtn.on('change', function() {
if ($(this).is(':checked')) {
// 开启状态
console.log('开启');
} else {
// 关闭状态
console.log('关闭');
}
});
});
```
在上面的代码中,我们使用了 `input[type="checkbox"]` 和 CSS 的 `:before` 伪元素来实现开关的效果,使用了 jQuery 的 `change()` 方法来监听开关状态的变化。当开关被选中时,控制台会输出 `开启`,否则输出 `关闭`。你可以根据需要修改输出的内容和执行的代码。
阅读全文