博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS小技巧--input checkbox css 样式美化
阅读量:6084 次
发布时间:2019-06-20

本文共 1640 字,大约阅读时间需要 5 分钟。

更改默认样式为:

HTML

复制代码

CSS

.magic-checkbox {  position: absolute;  display: none; }.magic-checkbox[disabled] {  cursor: not-allowed; }.magic-checkbox + label {  position: relative;  display: block;  padding-left: 30px;  cursor: pointer;  vertical-align: middle; }  .magic-checkbox + label:hover:before {    animation-duration: 0.4s;    animation-fill-mode: both;    animation-name: hover-color;   }  .magic-checkbox + label:before {    position: absolute;    top: 0;    left: 0;    display: inline-block;    width: 20px;    height: 20px;    content: '';    border: 1px solid #c0c0c0;   }   .magic-checkbox + label:after {    position: absolute;    display: none;    content: ''; }.magic-checkbox[disabled] + label {  cursor: not-allowed;  color: #e4e4e4; }  .magic-checkbox[disabled] + label:hover,  .magic-checkbox[disabled] + label:before,  .magic-checkbox[disabled] + label:after {    cursor: not-allowed;   }  .magic-checkbox[disabled] + label:hover:before {    border: 1px solid #e4e4e4;    animation-name: none;   }  .magic-checkbox[disabled] + label:before {    border-color: #e4e4e4;   }.magic-checkbox:checked + label:before {  animation-name: none; }.magic-checkbox:checked + label:after {  display: block; }.magic-checkbox + label:before {  border-radius: 10px; }.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; }复制代码

转载于:https://juejin.im/post/5d0a4e5251882514c324b387

你可能感兴趣的文章
lr_start_timer,lr_get_transaction_duration,lr_get_transaction_wasted_time函数使用总结
查看>>
ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS
查看>>
rdd.toDebugString
查看>>
MVC5 + EF6 入门完整教程
查看>>
Swing中弹出对话框的几种方式(转)
查看>>
biz处理dao事务处理层
查看>>
毕业论文 一定要自己写 切记不可抄袭
查看>>
洗纸牌算法
查看>>
MongoDB Shell 经常使用的操作
查看>>
Linux 性能监测:Network
查看>>
MySQL: Speed of INSERT Statements
查看>>
SQL like使用 模糊查询
查看>>
java在string和int相互转化
查看>>
谁能在同一文件序列化多个对象并随机读写(反序列化)?BinaryFormatter、SoapFormatter、XmlSerializer还是BinaryReader...
查看>>
uva 1436 - Counting heaps(算)
查看>>
What qualities characterize a great PhD student
查看>>
C#中Abstract和Virtual
查看>>
编写更好的C#代码
查看>>
【数据库设计-1.1】关系的实现
查看>>
UVa 10285 - Longest Run on a Snowboard
查看>>