php按钮开关,label+input实现按钮开关切换效果

label+input实现按钮开关切换效果html>

Document

.ipt {

display: none;

}

.box {

width: 74px;

height: 30px;

line-height: 30px;

overflow: hidden;

border: 1px solid #eee;

border-radius: 4px;

position: relative;

cursor: pointer;

}

label {display:inline-block;}

.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来实现改变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;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值