找回密码
 立即注册
快捷导航

[Html/Css/JS] css3 移动端 开关效果

[复制链接]
妙笔生花 2023-8-22 09:18:42 | 显示全部楼层

css3 移动端 开关效果4996 作者:妙笔生花 帖子ID:702

<div class="container">
    <div class="bg_con">
        <input id="checked_1" type="checkbox" class="switch" />
        <label for="checked_1"></label>
    </div>
</div>
.bg_con .switch{
    display:none;
}
.bg_con label{
    position:relative;
    display: block;
    padding: 1px;
    border-radius: 24px;
    height: 22px;
    margin-bottom: 15px;
    background-color: #eee;
    cursor: pointer;
    vertical-align: top;
    -webkit-user-select: none;
    width: 40px;
}
.bg_con label:before{
    content: '';
    display: block;
    border-radius: 24px;
    height: 22px;
    background-color: white;
    -webkit-transform: scale(1, 1);
    -webkit-transition: all 0.3s ease;
}
.bg_con label:after{
    content: '';
    position: absolute;
    top: 50%;  
    left: 50%;  
    margin-top: -11px;  
    margin-left: -11px;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background-color: white;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.08);
    -webkit-transform: translateX(-9px);
    -webkit-transition: all 0.3s ease;
}
.bg_con .switch:checked~label:after{
    -webkit-transform: translateX(9px);
}

.bg_con .switch:checked~label:before{
    background-color:green;
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

温馨提示

关于 注册码 问题

      由于近期经常大量注册机器人注册发送大量广告,本站开启免费入群领取注册码注册网站账号,注册码在群公告上贴着...

关于 注册码 问题

      由于近期经常大量注册机器人注册发送大量广告,本站开启免费入群领取注册码注册网站账号,注册码在群公告上贴着...

Archiver|手机版|小黑屋|DLSite

GMT+8, 2024-11-22 22:03

Powered by Discuz! X3.5 and PHP8

快速回复 返回顶部 返回列表