博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用checkbox做switch
阅读量:4983 次
发布时间:2019-06-12

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

参考链接:https://zhuanlan.zhihu.com/p/41726464?utm_source=qq&utm_medium=social&utm_oi=1010468739178987520

结构部分

样式部分

/* 背景层 */.switch-component {  position: relative;  width: 60px;  height: 30px;  background-color: #dadada;  border-radius: 30px;  border: none;  outline: none;  -webkit-appearance: none;  transition: all .2s ease;}/* 按钮 */.switch-component::after {  content: '';  position: absolute;  top: 0;  left: 0;  width: 50%;  height: 100%;  background-color: #fff;  border-radius: 50%;  transition: all .2s ease;}/* 选中状态时,背景色切换 */.switch-component:checked {  background-color: #86c0fa; }/* 选中状态时,按钮的位置移动 */.switch-component:checked::after {  left: 50%;}

转载于:https://www.cnblogs.com/TheHeartWants/p/11011701.html

你可能感兴趣的文章
分享我的开源项目-springmore
查看>>
08ssm三大框架整合以前步骤
查看>>
R语言学习笔记之八
查看>>
正则表达式语法(msdn)
查看>>
oralce使用INSERT语句向表中插入数据
查看>>
MySQL 数据类型 详解 (转载)
查看>>
干净win7要做几步才能运行第一个Spring MVC 写的动态web程序
查看>>
枚举出局域网上所有网络资源
查看>>
Maven学习笔记(一)
查看>>
舒适的路线
查看>>
分割线
查看>>
xls的读写
查看>>
用函数创建子进程
查看>>
Myeclipse配置插件
查看>>
gitlab配置通过smtp发送邮件(QQ exmail腾讯企业为例)
查看>>
struts2学习笔记——常见报错及解决方法汇总(持续更新)
查看>>
蓝桥杯之入学考试
查看>>
新公司java的注解以及springboot的相关注解
查看>>
Unity脚本的生命周期中几个重要的方法
查看>>
poj1552
查看>>