<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 为移动设备添加1 viewport -->
<meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<!-- 添加到主屏后的标题(iOS 6 新增) -->
<meta name="apple-mobile-web-app-title" content="">
<meta name="format-detection" content="telephone=no">
<!-- 是否启用 WebApp 全屏模式,删除苹果默认的工具栏和菜单栏 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
.selected_remind_input input[type="checkbox"] {
-webkit-appearance: none;
}
.selected_remind_input input[type="checkbox"]:checked+label,
.selected_remind_input input[type="checkbox"]:not(:checked)+label {
background-color: #e0e0e0;
border-radius: 24px;
cursor: pointer;
display: inline-block;
height: 20px;
position: relative;
text-indent: -9999px;
width: 40px;
}
.selected_remind_input input[type="checkbox"]:checked+label:after,
.selected_remind_input input[type="checkbox"]:not(:checked)+label:after {
background-color: #fff;
border-radius: 20px;
content: " ";
height: 15px;
left: 2px;
position: absolute;
top: 2px;
width: 15px;
}
.selected_remind_input input[type="checkbox"]:checked+label {
background-color: #4d87ea;
}
.selected_remind_input input[type="checkbox"]:checked+label:after {
left: 22px;
}
.selected_remind_input input[type="checkbox"]:checked+label,
.selected_remind_input input[type="checkbox"]:not(:checked)+label {
-webkit-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.selected_remind_input input[type="checkbox"]:checked+label:after,
.selected_remind_input input[type="checkbox"]:not(:checked)+label:after {
-webkit-transition: left 0.3s;
transition: left 0.3s;
}
</style>
</head>
<body>
<div class="selected_remind_input ">
<input id="example2" type="checkbox" checked>
<label for="example2">Check</label>
</div>
<div class="selected_remind_input ">
<input id="example1" type="checkbox" checked>
<label for="example1">Check</label>
</div>
<div class="selected_remind_input ">
<input id="example0" type="checkbox" checked>
<label for="example0">Check</label>
</div>
</body>
</html>
input checked checkbox 样式改写--左右滑动
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- (楼主亲测: Chrome&Safari&UC 中可行,fire&IE 不可行。所以如果你在考虑各种浏览器的兼容性...
- 最终的效果图 image.png 使用到的方法 :before 伪元素,html 转义字符 参考地址 less 源...