css3實現的checkbox核取方塊美化程式碼例項

admin發表於2017-02-20
下面就是一段使用css3實現的核取方塊美化程式碼,IE8和IE8以下瀏覽器不支援。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
/* .checkboxC3 */
.checkboxC3 {
  width:14px;
  height:14px;
  position:relative;
}
.checkboxC3 label {
  width:14px;
  height:14px;
  cursor:pointer;
  position:absolute;
  top:0;
  left:0;
  background:#eae9e9;
  border:1px solid #bfbebe;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.checkboxC3 label:after{
  content:'';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  background: transparent;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.checkboxC3 input[type=checkbox] {
  margin: 0;
  visibility: hidden;
}
.checkboxC3 input[type=checkbox][disabled] + label {
  border-color: transparent;
  background: #ECECEC;
  cursor: not-allowed;
}
.checkboxC3 input[type=checkbox]:checked + label {
  border-color: transparent;
  background: #2196f3;
}
.checkboxC3 input[type=checkbox]:checked + label:after {
  opacity: 1;
}
/* end .checkboxC3 */
</style>
</head>
<body>
<div class="checkboxC3">
  <input type="checkbox" id="remeber"> 
  <label for="remeber"></label>
</div>
</body>
</html>

相關文章