• css3有文字的开关按钮


    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <style>
                .wrap{
                    width: 42px;
                    height: 20px;
                }
                input{
                    display: none;
                }
                label{
                    display: block;
                    border: 1px solid #888;
                    height: 20px;
                    border-radius: 15px;
                    transition: .3s;
                }
                label .move{
                    display: block;
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    box-shadow: 1px 1px 1px #ccc;
                    background: #fff;
                    transition: .3s;
                    overflow: hidden;
                }
                input:checked+label{
                    background: red;
                }
                input:checked+label .move{
                    transform: translateX(20px);
                    box-shadow: none;
                }
                .move span{
                    width: 40px;
                    display: block;
                    height: 20px;
                    line-height: 20px;
                    transition: 0.3s;
                }
                input:checked+label .move span{
                    transform: translateX(-20px);
                }
                em{
                    text-align: center;
                    width: 50%;
                    font-size: 12px;
                    font-style: normal;
                    float: left;
                }
            </style>
        </head>
        <body>
            <div class="wrap">
                <input type="checkbox" id="checkbox" />
                <label for="checkbox">
                    <span class="move">
                        <span>
                            <em>on</em>
                            <em>off</em>
                        </span>
                    </span>
                </label>
            </div>
        </body>
    </html>
  • 相关阅读:
    [转载]四大Java EE容器
    [转载]javaEE规范和SSH三大框架到底有什么关系
    javaee包含的服务和组件
    Java类文件最大限制
    oracle给字段添加描述
    apache commons工具包
    redis教程
    git学习
    编程人物
    程序员必须了解的5大编程准则
  • 原文地址:https://www.cnblogs.com/gxywb/p/10318574.html
Copyright © 2020-2023  润新知