您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么使用css3實現(xiàn)switch組件開關(guān),具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
基于表單的checkbox
效果圖
原理
checkbox, 有兩種狀態(tài), 沒選中和選中, 當(dāng)選中的時候(:checked), 改變樣式即可, 首先得清除瀏覽器默認(rèn)的樣式, apperance: none, 本文代碼只在chrome中運(yùn)行, 如果需要寫兼容性代碼, 給apperance和transition加上前綴就好
html代碼
<input class='switch-component' type='checkbox'>
css代碼
// switch組件 .switch-component { position: relative; width: 60px; height: 30px; background-color: #dadada; border-radius: 30px; border: none; outline: none; -webkit-appearance: none; transition: all .2s ease; } // 按鈕 switch-component::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background-color: #fff; border-radius: 50%; transition: all .2s ease; } // checked狀態(tài)時,背景顏色改變 .switch-component:checked { background-color: #86c0fa; } // checked狀態(tài)時,按鈕位置改變 .switch-component:checked::after { left: 50%; }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“怎么使用css3實現(xiàn)switch組件開關(guān)”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。