web-dev-qa-db-ja.com

選択したラジオボタンの中央の円の色を変更することは可能ですか

少なくともWebkitブラウザーでは、選択したラジオボタンの中央の円をスタイル設定できますか?

私が今持っているもの: enter image description here

私が欲しいもの: enter image description here

背景色、影などを次のように変更できます

#searchPopup input[type="radio"]{
  -webkit-appearance:none;
  box-shadow: inset 1px 1px 1px #000000;
  background:#fff;
}

#searchPopup input[type="radio"]:checked{
  -webkit-appearance:radio;
  box-shadow: none;
  background:rgb(252,252,252);
}

何か案は..?

15
T J

幸運にもradioタイプの入力フィールドで使用できるいくつかの丸いボーダートリック(外側の円をレンダリングする)と疑似要素:before(内側の円をレンダリングする)を使用してラジオボタンを模倣できます。

input[type='radio'] {
  -webkit-appearance:none;
  width:20px;
  height:20px;
  border:1px solid darkgray;
  border-radius:50%;
  outline:none;
  box-shadow:0 0 5px 0px gray inset;
}

input[type='radio']:hover {
  box-shadow:0 0 5px 0px orange inset;
}

input[type='radio']:before {
  content:'';
  display:block;
  width:60%;
  height:60%;
  margin: 20% auto;    
  border-radius:50%;    
}
input[type='radio']:checked:before {
  background:green;
}

作業デモ

33
King King

ラジオボタンを非表示にしてラベルを好きなようにスタイルするよりも、ラジオボタンをラベルにバインドできます。

div {
    background-color: #444444;
    display: flex-column;
    display:webkit-flex-column;
}
input {
    margin: 10px;
    position: absolute;
    left: 100px;
}
label {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 10px;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #ffffff;
    box-shadow: inset 1px 0 #000000;
}
#green {
   border: 8px solid green;
}
#red {
    border: 8px solid red;
}
input:checked + #green {
    border: 8px solid #ffffff;
    background-color:green !important;
}
input:checked + #red {
    border: 8px solid #ffffff;
    background-color: red !important;
}
Click a button on the left - radio button on the right will be checked.
<div>
    <input id="greenInput" type="radio" name="someName">
    <label id="green" for="greenInput"> </label>
    <input id="redInput" type="radio" name="someName">
    <label id="red" for="redInput"></label>
 </div>
3
snowerest

ラジオボタンがチェックされているときに背景画像を適用することもできます

[type="radio"]:checked {
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
    background-image:  ...
}

例: http://jsfiddle.net/yZ6tM/

2
Vangel Tzo