這篇文章主要介紹了純CSS實現radio和checkbox實現效果範例的相關資料,內容挺不錯的,現在分享給大家,也給大家做個參考。
radio-and-checkbox
純CSS實作radio與checkbox實作效果
##reset-radio
#在開發PC端的專案時,常會用到radio和checkbox元件,可是因為原生的樣式相對來說不符合設計師的設計風格,所以我們可能會經常引用第三方的模組去實現,或者透過JS等其他方式去hack。這樣相對來說增加了程式碼量不說,還特別複雜,所以才有了這個純CSS依賴原生input[radio]和input[checkbox]的實作方式,主要程式碼如下:html主要程式碼<p class="reset-radio"> <input checked type="radio" id="age1" name="age"> <span class="real-target"></span> </p>
#
.reset-radio { display: inline-block; position: relative; width: 16px; height: 16px; } .reset-radio .real-target { z-index: 1; width: 100%; height: 100%; position: absolute; display: inline-block; background: #ffffff; border: 1px solid #dadde0; border-radius: 100%; top: 0; left: 0; bottom: 0; } .reset-radio input[type=radio] { cursor: pointer; z-index: 2; width: 16px; height: 16px; opacity: 0; position: absolute; left: 0; top: 0; margin: 0; right: 0; bottom: 0; } .reset-radio input:checked+span { border-color: #48b4ec; } .reset-radio input:checked+span::before { content: ''; position: absolute; background: #48b4ec; width: 6px; height: 6px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 100%; }
##
以上是CSS實現radio和checkbox的 實現效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!