<div class="wrap">
<!-- `input`的id必须有,这个是label进行元素匹配所必需的 -->
可以看到每个input的id和label的“for”属性对应同一字符串 -->
input type="checkbox" id="checkbox01" />
label for="checkbox01"></label>
="checkbox02" ="checkbox02"="checkbox03" ="checkbox03"="checkbox04" ="checkbox04">
.wrap {
width: 500px;
background-color: #EEE;
border: 2px solid #DEF;
}
/* 隐藏所有checkbox */
input[type='checkbox'] {
display: none;
}
对label进行模拟.背景图片随便拼凑的,不要吐槽品味*/
transition效果是做个背景切换效果,这里单纯演示而已,实际上这个过渡不加更自然
label { inline-block; 60px;
height:
position: relative;
background: url(//www.chitanda.me/images/blank.png);
background-position: 0 0px;
-webkit-transition: background 0.5s linear;
}
利用相邻选择符和checkbox`:checked`的状态伪类来模拟默认选中效果(就是点击后那个勾号的效果) 如果这段代码注释,点击后将没有任何反馈给用户因为label本身是没有点击后被选中的状态的,checkbox被隐藏后,这个状态只能手动模拟
input[type='checkbox']:checked+label { 0 -60px;
}
伪元素的生效很简单,定义`content`就好,其余的属性和普通div一样
label::after {
content: attr(data-name);
利用attr可以减少css代码量,data-name写在html部分的label属性里*/ 120px;
left: 100%;
vertical-align: middle;
margin: 10px;
}
:active 向被激活的元素添加样式。
:focus 向拥有键盘输入焦点的元素添加样式。
:hover 当鼠标悬浮在元素上方时,向元素添加样式。
:link 向未被访问的链接添加样式。
:visited 向已被访问的链接添加样式。
:first-child 向元素的第一个子元素添加样式。
:checked 向选中的控件元素添加样式
::before 为作用元素的第一个子节点插入dom中
::after 为作用元素的最后一个子节点插入dom中
="radio"="radio">
="radio">
input{
display:none;
}
width: 30px;
height:
border: 1px solid #333;
border-radius: 50%;
position: relative;
}
-webkit-transition: all .5s ease;
-moz-transition:
-o-transition:
-ms-transition:
transition:
cursor: pointer; absolute; 16px;
top:
left:
margin-top:-8px;
margin-left:
z-index: 1;
content: '';1px solid #333;
}
input:checked+label::after{
background:red;
}
="checkbox" opacity .5s ease;
opacity: 0;
} 2px solid #d73d32;
border-top: none;
border-right:
-webkit-transform: rotate(-45deg);
-ms-transform:
transform:
width:20px;
height:10px;
top:50%;
margin-top:
left:
margin-left:-10px;
opacity: 1.0;
}