css实现checkbox立体质感物理按键开关效果代码
代码语言:html
所属分类:布局界面
代码描述:css实现checkbox立体质感物理按键开关效果代码
代码标签: css checkbox 立体 质感 物理 按键 开关
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />
<style>
.toggle > div {
position: relative;
padding: 10px;
width: 132px;
height: 59px;
border-radius: 50px;
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, .5), 0px 1px 1px 0 rgba(255, 255, 255, 1);
background: rgb(189, 191, 193);
background: linear-gradient(to bottom, rgba(189, 191, 193, 1) 0%, rgba(249, 251, 254, 1) 100%);
}
.toggle > div > input[type=checkbox] {
position: absolute;
opacity: 0;
top: -3px;
left: 17px;
width: 130px;
height: 55px;
z-index: 5;
}
.toggle > div > input[type=checkbox] ~ div {
width: 130px;
height: 55px;
border-radius: 50px;
border: 1px solid #979797;
box-shadow: inset 5px 0 0 0 rgba(0, 0, 0, .1), inset -5px 0 0 0 rgba(0, 0, 0, .1), inset -6px 0 0 0 rgba(255.........完整代码请登录后点击上方下载按钮下载查看
网友评论0