Как я могу изменить стиль ввода радио типа в CSS? - PullRequest
0 голосов
/ 23 апреля 2019

Я хочу создать свои собственные радио-кнопки, но, похоже, я не могу изменить их стиль.

Я получил следующий HTML:

.segment {
  all: unset;
  position: relative;
  border: solid 1px blue;
  height: 2rem;
  width: 3rem;
  -webkit-tap-highlight-color: transparent;
}
<div>
  <input id="segemnt0" class="segment" type="radio" name="segment">
  <input id="segemnt1" class="segment" type="radio" name="segment">
  <input id="segemnt2" class="segment" type="radio" name="segment">
</div>

Это не работает. Ничего не отображается вообще. Если я уберу "all: unset;" он просто отображает флажок в обычном стиле без границ и т.д ...

Ответы [ 2 ]

2 голосов
/ 23 апреля 2019

Вы можете настроить переключатели, добавив тег <label> и CSS

Вот скрипка, которая может вам помочь:

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #F87DA9;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
<input id="segemnt0" class="segment" type="radio" name="segment">
<label for="segemnt0">one</label>
<input id="segemnt1" class="segment" type="radio" name="segment">
<label for="segemnt1">two</label>
<input id="segemnt2" class="segment" type="radio" name="segment">
<label for="segemnt2">three</label>
1 голос
/ 23 апреля 2019

Попробуйте образец с этикеткой. Вам нужно добавить метку в свой код для стиля радио.

input[type=radio] {
  display: none;
}
input[type=radio] + label:before {
  content: '';
  display: inline-block;
  border: 2px solid #0F81D5;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin: 2px 5px 0 0px
}
input[type=radio]:checked + label:before {
  border-width: 5px;
  height: 6px;
  width: 6px;
}
<div>
  <input type="radio" name="radio" id="radio1" />
  <label for="radio1">radio1</label>
</div>
<div>    
  <input type="radio" name="radio" id="radio2" />
  <label for="radio2">radio2</label>
</div>
<div>    
  <input type="radio" name="radio" id="radio3" />
  <label for="radio3">radio3</label>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...