我正在使用基于Brad Bodine的示例here的复选框。我对他的例子给我的能力感到激动,但我确实有一个问题。
我正在使用slideThree(参见下面的CSS)。它就像一个魅力,但我想根据滑块的位置更改父DIV的背景颜色。我认为下面两个例子中的一个可能会这样做:
.slideThree input[type=checkbox]:checked { background: green; }
.slideThree input[type=checkbox]:checked + div { background: green; }
但两个人都没有工作。是否可以根据INPUT的选定状态更改背景?
HTML
<div class="slideThree">
<input type="checkbox" value="None" id="test" name="check" checked />
<label for="test"></label>
</div>
CSS
/* .slideThree */
.slideThree {
width: 80px;
height: 26px;
background: #333;
margin: 20px auto;
position: relative;
border-radius: 50px;
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.slideThree:after {
content: 'OFF';
color: #000;
position: absolute;
right: 10px;
z-index: 0;
font: 12px/26px Arial, sans-serif;
font-weight: bold;
text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
}
.slideThree:before {
content: 'ON';
color: #27ae60;
position: absolute;
left: 10px;
z-index: 0;
font: 12px/26px Arial, sans-serif;
font-weight: bold;
}
.slideThree label {
display: block;
width: 34px;
height: 20px;
cursor: pointer;
position: absolute;
top: 3px;
left: 3px;
z-index: 1;
background: #fcfff4;
background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
border-radius: 50px;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
.slideThree input[type=checkbox] {
visibility: hidden;
}
.slideThree input[type=checkbox]:checked + label {
left: 43px;
}
/* end .slideThree */
答案 0 :(得分:1)
我要感谢@LGSon。他的解决方案很完美。这是对HTML的工作修改和CSS的补充。我不得不添加边框和box-shadow元素,因为Firefox不喜欢我推动SPAN背后的一切,所以SPAN即将到来,等等。
<div class="slideThree">
<input type="checkbox" value="None" id="test" name="check" checked />
<label for="test"></label>
<span></span>
</div>
CSS ......
.slideThree span{
display: block;
position: absolute;
width: 50px;
height: 16px;
background: red;
z-index: 0;
top: 0px;
left: 0px;
border-radius: 8px;
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.slideThree input[type=checkbox]:checked ~ span { background: green; }