我找到了很好的代码,可以对复选框进行样式化。
HTML:
<input id="checkbox" type="checkbox" class="checkbox" />
<label id="checkbox_lab" for="checkbox" class="checkbox_lab"></label>
CSS:
.checkbox {
display: none;
}
.checkbox_lab {
background: url("images/off.png") no-repeat;
height: 28px;
width: 81px;
display: block;
}
.checkbox_lab_sel {
background: url("images/on.png") no-repeat;
}
Javascript(使用 jquery):
$(document).ready(function(){
$(".checkbox").change(function(){
if($(this).is(":checked")){
$(this).next("label").addClass("checkbox_lab_sel");
}else{
$(this).next("label").removeClass("checkbox_lab_sel");
}
});
});
它工作得非常好。我想要“从打开到关闭的漂亮切换动画,反之亦然”,它保存在动画 gif 中,但是......我在 JS 中不是很好,不知道该怎么做。有人知道吗?