我试图在单击框后通过CSS删除应用于复选框的悬停类。 有谁知道怎么做?
JSFiddle http://jsfiddle.net/sa9fe/
复选框代码为:
<div>
<input type="checkbox" id="checkbox-1-1" class="regular-checkbox flaticon-boxing3" />
<input type="checkbox" id="checkbox-1-2" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-3" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-4" class="regular-checkbox" />
</div>
复选框的CSS如下:
.regular-checkbox {
vertical-align: middle;
text-align: center;
margin-left: auto;
margin-right: auto;
align: center;
color: #39c;
width: 140px;
height: 140px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background-color: #fff;
border: solid 1px #ccc;
-webkit-appearance: none;
background-color: #fff;
display: inline-block;
position: relative;}
.regular-checkbox:checked {
background-color: #39c;
color: #fff !important;}
.regular-checkbox:hover {
background-color: #f0f7f9;}
.regular-checkbox:checked:after {
color: #fff;
position: absolute;
top: 0px;
left: 3px;
color: #99a1a7; }
那么有什么建议吗?
也有人知道如何更改高光,因为此时它似乎突出了边框半径为3px的边框,而我使用的框是6px。
答案 0 :(得分:3)
所以只需添加此
.regular-checkbox:checked, .regular-checkbox:checked:hover {
background-color: #39c;
color: #fff !important;
}
如果您要删除蓝色边框,请在outline:0;
类
.regular-checkbox
答案 1 :(得分:1)
你在找这个吗?
.regular-checkbox:checked:hover {
background-color: #39c;
color: #fff !important;
}
答案 2 :(得分:0)
如果您熟悉jQuery,则可以为特定复选框定义onClick事件,并在函数内部使用removeClass(classname)
。您可以在jQuery api site找到更多信息。