checkbox美化胶囊效果

代码语言:html

所属分类:表单美化

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>


    <style>
        * {
            padding: 0;
            margin: 0
        }
        body {
            background: white
        }
        input {
            display: none
        }
        .switch {
            position: relative;
            display: block;
            width: 38px;
            height: 20px;
            cursor: pointer;
            margin-top: 100px;
            margin-left: 100px;
            border-radius: 10px;
            background: #b0b0b0;
        }
        .switch:before {
            content: 'OFF';
            position: absolute;
            top: 1px;
            right: 2px;
            font-size: 12px;
            color: #fff;
            transform: scale(0.75);

        }
        .switch:after {
            content: '';
            position: absolute;
            top: -1px;
            left: -6px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background-color: #fff;
            transition: left 200ms linear;
        }
        input[type=checkbox]:checked+label .switch {
            background-color: #18c250;
        }
        input[type=checkbox]:checked +label .switch:before {
            content: 'ON';
            right: 15px;
        }
        input[type=checkbox]:checked+label .switch:after {
            left: 25px;
        }

        * {
            margin: 0;
            padding: 0;
        }

        .box {
            position: relative;
            display: block;
            float: left;
            width: 50px;
            height: 50px;.........完整代码请登录后点击上方下载按钮下载查看

网友评论0