css3自定義checkbox核取方塊打勾效果程式碼例項

antzone發表於2017-03-13

分享一段程式碼例項,它實現了自定義checkbox核取方塊打勾效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.chk_1 {
  display: none;
}
.chk_1 + label {
  background-color: #FFF;
  border: 1px solid #b5b5b5;
  padding: 9px;
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.chk_1:checked + label:after {
  content: '\2713';
  position: absolute;
  top: -10px;
  left: 0px;
  color: #4c4c4c;
  width: 100%;
  text-align: center;
  font-size: 1.4em;
  padding: 1px 0 0 0;
  vertical-align: text-top;
}
</style>
</head>
<body>
<input type="checkbox" /><label>check box</label>
<input type="checkbox" id="checkbox_a1" class="chk_1" checked /><label for="checkbox_a1"></label>
<input type="checkbox" id="checkbox_a2" class="chk_1" /><label for="checkbox_a2"></label>
<input type="checkbox" id="checkbox_a3" class="chk_1" /><label for="checkbox_a3"></label>
<input type="checkbox" id="checkbox_a4" class="chk_1" /><label for="checkbox_a4"></label>
</body>
</html>

相關文章