关闭边栏(ESC)打开边栏(ESC)
最近在为博客添加评论回复时发邮件,在发表评论时,可以由用户决定是否有回复时邮件通知,这个复选框原来的样式很不好看,所以决定来一次美化,以下是美化的全部操作,可以自行修改成更多的、漂亮的样式出来。思路:先隐藏原来的复选框、自定义一个外框、自定义一个Checked时的样式如打勾、Label的其它美化
一、Html结构:
1 2 |
<input type="checkbox" name="chb" id="chb" value="comments" checked="checked" class="chk_1"/> <label for="chb">有人回复时邮件通知我</label> |
二、CSS样式:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
/*把原来的复选框给隐藏*/ .chk_1 { display: none; } /*定义复选框文字说明的label样式*/ .chk_1 + label { display: inline-block; position: relative; color:#aaa; margin-left:20px; padding-left:25px; } /*定义label激活时的样式*/ .chk_1 + label:active { color:#ccc } /*自定义一个框来代替原来的复选框,也可以不用加框*/ .chk_1 + label::before { content: ''; border: 1px solid #ddd; width: 20px; height: 20px; position: absolute; left: 0; top: 0; } /*勾选复选框时的样式*/ .chk_1:checked + label { color: #000; } /*勾选复选框时,自定义的外边框样式*/ .chk_1:checked + label:before{ border-color:#999; } /*勾选时弄个打勾的符号在文字前边,代替原来复选框的勾*/ .chk_1:checked + label:after { content: '\2714'; position: absolute; top: -1px; left: 4px; color: #758794; width: 100%; font-size: 1.2em; } |
三、完成后的效果:
上面只是其中的一种效果,继续折腾了一下,于是有了下面二种效果,其实这种自定义的复选框可以自行CSS出好多种效果,最终本站用的绿红按钮间切换的。HTML结构是一样的,下面只贴出不同的CSS.
一、有打勾渐变效果的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
/*把原来的复选框给隐藏*/ .chk_1 { display: none; } /*定义复选框文字说明的label样式*/ .chk_1 + label { display: inline-block; position: relative; color:#aaa; margin-left:20px; padding-left:25px; } /*定义label激活时的样式*/ .chk_1 + label:active { color:#ccc } /*定义复选框外边的框*/ .chk_1 + label::before{ content:''; position:absolute; left:0; top:0; width:20px; height:20px; border:1px solid #ddd; } /*自定义一个框来代替原来的复选框,也可以不用加框*/ .chk_1 + label::after { content: '\2714'; position: absolute; top: 0; left: 0; color: #758794; font-size: 12px; width: 20px; height: 20px; text-align: center; line-height: 20px; -webkit-transform:scale(0); -webkit-transition:all .3s; opacity:0; } /*勾选复选框时的样式*/ .chk_1:checked + label { color: #000; } /*勾选时弄个打勾的符号在文字前边,代替原来复选框的勾*/ .chk_1:checked + label:before { border-color:#aaa } .chk_1:checked + label:after { -webkit-transform:scale(1); opacity:1; } |
效果图如下:
二、带ON、OFF的效果:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
/*把原来的复选框给隐藏*/ .chk_1 { display: none; } /*美化复选框其把握二种状态:勾选与未勾选二种的样式就行*/ .chk_1 + label { display: inline-block; position: relative; color: #aaa; margin-left: 20px; padding-left: 65px; } .chk_1:checked + label { color: #000; } .chk_1 + label::before { content: ''; position: absolute; left: 5px; top: 0px; width: 18px; height: 18px; border-radius: 50%; background: #fff; z-index: 2; transition: all .3s; } .chk_1:checked + label::before { left: 37px; } .chk_1 + label::after { content: 'OFF'; position: absolute; top: -3px; left: 0; width: 60px; height: 25px; border-radius: 25px; background: #ED6F6F; color: #fff; line-height: 25px; padding-left: 28px; font-size: 12px; transition: all .3s; } .chk_1:checked + label::after { content: 'ON'; padding-left: 10px; background: #4FB845; } |
效果图如下:
鼠标放上去要显示手型,就自己加上一条:.chk_1 + label:hover{cursor:pointer}
这第一种效果是最初弄的,后来在苹果手机上发现那个勾不适应,所以改成了第二种,最终还是喜欢似苹果的那种带ON、OFF的样式。
[…] 注:在评论页面有个“有人回复时邮件通知我”这个复选框,这个也是DIY后美化的,可以参考这篇文章来修改:CSS美化复选框 […]