码迷,mamicode.com
首页 > 其他好文 > 详细

label+input实现开关切换效果

时间:2017-08-17 00:49:24      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:border   font   order   absolute   inline   checkbox   put   eee   span   

Document

主要使用label+input来实现改变left的值,下面是核心代码,意思就是选中的input的兄弟节点.box下的.switch-btn元素的left会变成0px(原来是-37px);

        .ipt:checked + .box .switch-btn {
            left: 0;
        }
    

当然要配合transition来实现

下面是效果

ON OFF

全部css代码

            .ipt {
                display: none;
            }
            .box {
                width: 74px;
                height: 30px;
                line-height: 30px;
                overflow: hidden;
                border: 1px solid #eee;
                border-radius: 4px;
                position: relative;
                cursor: pointer;
            }
            .ipt:checked + .box .switch-btn {
                left: 0;
            }
            .switch-btn {
                position: absolute;
                left: -37px;
                top: 0;
                width: 111px;
                height: 30px;
                transition: all 0.5s;
            }
            .switch-btn span{
                width: 37px;
                height: 30px;
                display: block;
                text-align: center;            
                float: left;
                font-size: 14px;
            }
            .on {
                background: #52B13C;
                color: white;
            }
            .white {
                background: white;
            }
            .off {
                background: #EEEEEE;
            }
    

label+input实现开关切换效果

标签:border   font   order   absolute   inline   checkbox   put   eee   span   

原文地址:http://www.cnblogs.com/hongrunhui/p/7376600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!