html 使用无线电输入创建的按钮组。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用无线电输入创建的按钮组。相关的知识,希望对你有一定的参考价值。
/////////////////////////////////////////////
//
// Button group
//
// Structure:
// <div>
// <input:radio.buttonGroup__radio>
// <label>
// ...
@mixin button__group(
$selected_bg: $color_off_white,
$selected_color: $color_secondary,
$border_radius: .15em
) {
display: flex;
flex-flow: row nowrap;
&-radio {
display: none;
&:checked {
+ label {
background-color: $selected_bg;
color: $selected_color;
}
}
}
&-label {
@include custom_transition();
border: 1px solid $selected_bg;
color: $selected_bg;
cursor: pointer;
padding: .6em .6em .5em;
text-align: center;
&:not(:last-of-type) {
border-right: 0;
}
&:first-of-type {
border-radius: $border_radius 0 0 $border_radius;
}
&:last-of-type {
border-radius: 0 $border_radius $border_radius 0;
}
}
}
.types {
&__prices {
@include button__group();
font-size: 1.4rem;
margin: 1rem auto 2rem;
}
}
<div class="types__prices">
<input
class="types__prices-radio"
type="radio"
id="{{ child._id }}"
data-ng-repeat-start="child in vm.type.children | orderBy:'priority' track by child._id"
data-ng-model="vm.selectedChild"
data-ng-value="child"
>
<label
class="types__prices-label"
for="{{ child._id }}"
data-ng-repeat-end
>
{{ ::child.price.totalCost | dollars:0 }}
</label>
</div>
以上是关于html 使用无线电输入创建的按钮组。的主要内容,如果未能解决你的问题,请参考以下文章
遍历单选按钮组并显示错误
验证 2 组或更多组单选按钮,每组包含 4 个单选按钮
方向变化的无线电组行为
设置变量值,从无线电组中选择一个单选按钮
获得广播组中单选按钮的焦点
如何在离子ngfor中制作动态无线电组按钮并传递给用户选择的打字稿