【发布时间】:2018-01-08 00:58:36
【问题描述】:
如果你能帮助我,我会很高兴。 我被要求开发一个复选框滑块。
问题是,当我点击滑块时,我需要发生两件事:
当滑块在左侧时,“特定”字将被隐藏 并且仅在单击将变为的块后才会显示 右侧。
滑动将在动画中。
代码如下:
HTML:
=====
<div class="checkboxThree">
<input type="checkbox" value="0" id="checkboxThreeInput" name="" />
<label for="checkboxThreeInput"></label>
</div>
CSS:
====
/**
* Checkbox Three
*/
.checkboxThree {
width: 95px;
height: 16px;
background:#A22452;
border-radius: 50px;
position: relative;
margin:0 auto;
margin-top: 5px;
}
/**
* Create the text for the "All" position
*/
.checkboxThree:before {
content: 'All';
position: absolute;
top: -1px;
left: 70px;
height: 2px;
color: #F9F9F9;
font-size: 14px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: bold;
}
/**
* Create the label for the "Specific" position
*/
.checkboxThree:after {
content: 'Specific';
position: absolute;
top: -1px;
left: 4px;
height: 2px;
color: #F7A6F4;
font-size: 14px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: bold;
}
/**
* Create the pill to click
*/
.checkboxThree label {
display: block;
width: 32px;
height: 14px;
border-radius: 50px;
transition: all .5s ease;
cursor: pointer;
position: absolute;
top: 1px;
z-index: 1;
/* left: 12px; */
background: #08EFEF;
}
/**
* Create the checkbox event for the label
*/
.checkboxThree input[type=checkbox]:checked + label {
left: 62px;
}
link: https://jsfiddle.net/gtq792sa/
你能告诉我如何解决它吗?
【问题讨论】: