CSS3 radio單選按鈕美化效果
預設的radio單選按鈕雖然說不上醜陋,但是絕對不美觀。
下面分享一段程式碼例項,它實現了對單選按鈕的美化效果,程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> input[type=radio] { -webkit-appearance: none; -moz-appearance: none; appearance: none; border: 0; outline: 0 !important; } /*radio01*/ #radio01:after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; text-align: center; line-height: 13px; font-size: 24px; color: #09f; border: 2px solid #ddd; background-color: #fff; box-sizing: border-box; } #radio01:checked:after { content: "\2022"; border-color: #09f; transition: all 0.3s ease-in-out; } /*radio02*/ #radio02:after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; text-align: center; line-height: 16px; font-size: 12px; color: #09f; border: 2px solid #ddd; background-color: #fff; box-sizing: border-box; } #radio02:checked:after { content: "\2713"; border-color: #09f; transition: all 0.3s ease-in-out; } /*radio03*/ #radio03:after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; text-align: center; line-height: 16px; font-size: 12px; color: #09f; border: 2px solid #ddd; background-color: #fff; box-sizing: border-box; } #radio03:checked:after { content: "\2716"; border-color: #09f; transition: all 0.5s ease; } </style> </head> <body> <div> <div> <label for="radio01">螞蟻部落一</label> <input type="radio" name="radio-01" id="radio01" /> </div> <div> <label for="radio02">螞蟻部落二</label> <input type="radio" name="radio-01" id="radio02" /> </div> <div> <label for="radio03">螞蟻部落三</label> <input type="radio" name="radio-01" id="radio03" /> </div> </div> </body> </html>
相關文章
- radio單選按鈕美化效果
- CSS3 美化radio單選按鈕CSSS3
- 單選按鈕美化效果程式碼
- css3將radio單選按鈕模擬為按鈕形狀CSSS3
- js單選按鈕radio選中值JS
- HTML input radio 單選按鈕HTML
- HTML input radio單選按鈕HTML
- html如何設定radio單選按鈕預設選中效果HTML
- radio 單選按鈕 選中多個
- css3單選框、核取方塊和開關按鈕美化效果程式碼例項CSSS3
- CSS3 checkbox核取方塊和radio單選框美化效果CSSS3
- css3實現button按鈕美化效果程式碼例項CSSS3
- JQuery統一複寫美化專案中所有radio單選按鈕樣式jQuery
- JavaScript獲取選中radio單選按鈕值JavaScript
- 設定radio單選按鈕預設選中
- JavaScript 獲取radio 選中單選按鈕值JavaScript
- JavaScript radio按鈕選中值JavaScript
- CSS3動畫按鈕效果CSSS3動畫
- 使用jQuery實現的取消radio按鈕選中效果jQuery
- 用jquery校驗radio單選按鈕(原創)jQuery
- CSS3簡單圓角立體按鈕效果CSSS3
- jQuery獲取被選中radio單選按鈕的值jQuery
- js如何獲取選中radio單選按鈕的值JS
- js如何取得選中的單選按鈕radio的值JS
- jQuery如何獲取選中單選按鈕radio的值jQuery
- jQuery判斷一個radio單選按鈕是否被選中jQuery
- javascript動態改變單選按鈕radio的選中狀態JavaScript
- 單選多選按鈕
- 精選10款CSS3實現的酷炫按鈕效果CSSS3
- CSS3 checkbox開關按鈕效果CSSS3
- CSS3滑鼠懸浮動畫按鈕效果CSSS3動畫
- CSS3滑動開關按鈕效果CSSS3
- CSS3叉號按鈕效果詳解CSSS3
- js獲取選中radio單選按鈕的值程式碼例項JS
- js練習----radio name屬性定義單選按鈕組JS
- CSS3滑鼠懸浮交叉線效果按鈕CSSS3
- 窗體(文字框,按鈕,單選按鈕,標籤)
- 原生js獲取radio按鈕選中值程式碼JS