纯CSS+HTML实现checkbox的思路与实例

前端开发 作者: 2024-08-20 17:35:02
checkbox应该是一个比较常用的html功能了,不过浏览器自带的checkbox往往样式不怎么好看,而且不同浏览器效果也不一样。出于美化和统一视觉效果的需求,checkbox的自定义就被提出来了。
<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;
}
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65635.html