單選框Radio和多選框checkbox需要美化嗎?當然,原生的樣式百年不變已經滿足不了我們客戶的需求。表單很多控制項需要美化,我們有藉助Javascript來做美化的,也有直接用CSS來美化的,今天我給大家介紹使用純CSS實現radio和checkbox的美化。
我們知道,很多使用JS來美化表單控制項的方法都不是很理想,需要藉助引入js和css,有的甚至使用圖片和字型表徵圖,而且還要依賴jQuery,而且複雜、可維護性差。
使用magic-check
magic-check只用了幾十行CSS代碼就可以實現checkbox和radio表單的美化。首先載入css檔案。
@keyframes hover-color {
from {
border-color: #c0c0c0; }
to {
border-color: #3e97eb; } }
.magic-radio,
.magic-checkbox {
position: absolute;
display: none; }
.magic-radio[disabled],
.magic-checkbox[disabled] {
cursor: not-allowed; }
.magic-radio + label,
.magic-checkbox + label {
position: relative;
display: block;
padding-left: 30px;
cursor: pointer;
vertical-align: middle; }
.magic-radio + label:hover:before,
.magic-checkbox + label:hover:before {
animation-duration: 0.4s;
animation-fill-mode: both;
animation-name: hover-color; }
.magic-radio + label:before,
.magic-checkbox + label:before {
position: absolute;
top: 0;
left: 0;
display: inline-block;
width: 20px;
height: 20px;
content: ''
border: 1px solid #c0c0c0; }
.magic-radio + label:after,
.magic-checkbox + label:after {
position: absolute;
display: none;
content: '' }
.magic-radio[disabled] + label,
.magic-checkbox[disabled] + label {
cursor: not-allowed;
color: #e4e4e4; }
.magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
.magic-checkbox[disabled] + label:hover,
.magic-checkbox[disabled] + label:before,
.magic-checkbox[disabled] + label:after {
cursor: not-allowed; }
.magic-radio[disabled] + label:hover:before,
.magic-checkbox[disabled] + label:hover:before {
border: 1px solid #e4e4e4;
animation-name: none; }
.magic-radio[disabled] + label:before,
.magic-checkbox[disabled] + label:before {
border-color: #e4e4e4; }
.magic-radio:checked + label:before,
.magic-checkbox:checked + label:before {
animation-name: none; }
.magic-radio:checked + label:after,
.magic-checkbox:checked + label:after {
display: block; }
.magic-radio + label:before {
border-radius: 50%; }
.magic-radio + label:after {
top: 7px;
left: 7px;
width: 8px;
height: 8px;
border-radius: 50%;
background: #3e97eb; }
.magic-radio:checked + label:before {
border: 1px solid #3e97eb; }
.magic-radio:checked[disabled] + label:before {
border: 1px solid #c9e2f9; }
.magic-radio:checked[disabled] + label:after {
background: #c9e2f9; }
.magic-checkbox + label:before {
border-radius: 3px; }
.magic-checkbox + label:after {
top: 2px;
left: 7px;
box-sizing: border-box;
width: 6px;
height: 12px;
transform: rotate(45deg);
border-width: 2px;
border-style: solid;
border-color: #fff;
border-top: 0;
border-left: 0; }
.magic-checkbox:checked + label:before {
border: #3e97eb;
background: #3e97eb; }
.magic-checkbox:checked[disabled] + label:before {
border: #c9e2f9;
background: #c9e2f9; }
.demo{width:360px;margin:50px auto 10px auto;padding:10px;}
.demo img{width:90%}
.demo h3{font-size:1.5em;line-height:1.9em}
.col{margin-top:20px}
.col h4{height:40px;line-height:40px}
.opt{height:30px;line-height:24px}
然後,只要給input元素加上一個CSS類magic-checkbox或magic-radio就可以。
Radio
Normal
Checkbox
Normal
細心的朋友可以看下css代碼,已經打包可以下載。CSS將checkbox和radio隱藏,然後使用:before和:after定位重繪checkbox和radio外觀,從而達到美化效果,支援IE9+。