這篇文章主要介紹label+input如何實(shí)現(xiàn)按鈕開關(guān)切換效果,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)主營南召網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件定制開發(fā),南召h5微信平臺小程序開發(fā)搭建,南召網(wǎng)站營銷推廣歡迎南召等地區(qū)企業(yè)咨詢
代碼如下所示:
Document 主要使用label+input來實(shí)現(xiàn)改變left的值,下面是核心代碼,意思就是
選中的input的兄弟節(jié)點(diǎn).box下的.switch-btn元素的left會變成0px(原來是-37px);
.ipt:checked + .box .switch-btn { left: 0; }當(dāng)然要配合transition來實(shí)現(xiàn)
下面是效果
全部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; }
以上是“l(fā)abel+input如何實(shí)現(xiàn)按鈕開關(guān)切換效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!