[分享]js+css美化radio和checkbox
分类:Javascript| 发布:camnprbubuol| 查看:1780 | 发表时间:2013/7/11
先看radio/checkbox效果对比:

下边贴出源码,实现的原理很简单,就是,先隐藏input[type=radio/checkbox],然后2中状态图片的切换,同时触发值得改变。
HTML代码如下:
01 | < label class = "label_radio" > |
02 | < input type = "radio" name = "sample-radio" >Radio1 |
04 | < label class = "label_radio" > |
05 | < input type = "radio" name = "sample-radio" >Radio2 |
07 | < label class = "label_radio" > |
08 | < input type = "radio" name = "sample-radio" > Radio3 |
10 | < label class = "label_check" > |
11 | < input type = "checkbox" id = "myCamnpr" value = "1" > checkbox1 |
13 | < label class = "label_check" > |
14 | < input type = "checkbox" value = "2" > checkbox2 |
CSS代码如下:
06 | text-shadow : 0 -1px 0 rgba( 0 , 0 , 0 ,. 2 ); |
20 | background : url (upload/ 2013 / 7 / 201307111320336660 .png) no-repeat ; |
23 | background-position : 0 0 ; |
26 | background-position : 0 -100px |
29 | background-position : 0 -150px ; |
32 | background-position : 0 -50px ; |
34 | .has-js .label_check input, |
35 | .has-js .label_radio input { |
JS代码如下:
02 | var safari = (navigator.userAgent.toLowerCase().indexOf( 'safari' ) != -1) ? true : false ; |
04 | var gebtn = function (parEl, child) { return parEl.getElementsByTagName(child); }; |
06 | var body = gebtn(d, 'body' )[0]; |
07 | body.className = body.className && body.className != '' ? body.className + ' has-js' : 'has-js' ; |
08 | if (!d.getElementById || !d.createTextNode) { |
11 | var ls = gebtn(d, 'label' ); |
12 | for ( var i = 0; i < ls.length; i++) { |
14 | if (l.className.indexOf( 'label_' ) == -1) { |
18 | var inp = gebtn(l, 'input' )[0]; |
19 | if (l.className == 'label_check' ) { |
20 | l.className = (safari && inp.checked == true || inp.checked) ? 'label_check c_on' : 'label_check c_off' ; |
23 | inp.onclick = function (e) { |
24 | e && e.stopPropagation ? e.stopPropagation() : window.event.cancelBubble = true ; |
27 | if (l.className == 'label_radio' ) { |
28 | l.className = (safari && inp.checked == true || inp.checked) ? 'label_radio r_on' : 'label_radio r_off' ; |
29 | l.onclick = turn_radio; |
33 | var check_it = function (e) { |
34 | var inp = gebtn( this , 'input' )[0]; |
35 | console.log( this .className); |
36 | if ( this .className == 'label_check c_off' || (!safari && inp.checked)) { |
37 | this .className = 'label_check c_on' ; |
44 | this .className = 'label_check c_off' ; |
54 | var turn_radio = function () { |
55 | var inp = gebtn( this , 'input' )[0]; |
56 | if ( this .className == 'label_radio r_off' || inp.checked) { |
57 | var ls = gebtn( this .parentNode, 'label' ); |
58 | for ( var i = 0; i < ls.length; i++) { |
60 | if (l.className.indexOf( 'label_radio' ) == -1) { |
63 | l.className = 'label_radio r_off' ; |
65 | this .className = 'label_radio r_on' ; |
70 | this .className = 'label_radio r_off' ; |
文章转自:http://www.w3cplus.com/css/fancy-checkboxes-and-radio-buttons (修复了checkbox的冒泡的错误)
备份图片:
下边2张图片,可以合成一张,效果也很好看的。哈哈

