要在单选按钮列表上产生效果,使得当选中某个单选按钮时,效果分别应用于每个单选按钮而不是所有单选按钮,可以通过以下步骤实现:
单选按钮(Radio Button)是一种用户界面元素,允许用户在多个选项中选择一个。每个单选按钮通常有一个唯一的标识符(如 name
属性),用于确保同一组中的单选按钮互斥。
单选按钮通常分为两种类型:
单选按钮广泛应用于表单、设置页面、配置选项等场景。
以下是一个使用HTML和CSS实现单选按钮效果的示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Radio Button Effect</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="radio-group">
<label class="radio">
<input type="radio" name="option" value="1">
<span class="checkmark"></span>
Option 1
</label>
<label class="radio">
<input type="radio" name="option" value="2">
<span class="checkmark"></span>
Option 2
</label>
<label class="radio">
<input type="radio" name="option" value="3">
<span class="checkmark"></span>
Option 3
</label>
</div>
</body>
</html>
.radio-group {
display: flex;
flex-direction: column;
}
.radio {
margin-bottom: 10px;
cursor: pointer;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 50%;
}
.radio input[type="radio"] {
display: none;
}
.radio input[type="radio"]:checked + .checkmark {
background-color: #2196F3;
}
.radio .checkmark:after {
content: "";
position: absolute;
display: none;
}
.radio input[type="radio"]:checked + .checkmark:after {
display: block;
}
.radio .checkmark:after {
top: 9px;
left: 9px;
width: 8px;
height: 8px;
border-radius: 50%;
background: white;
}
<label>
标签包裹每个单选按钮,以便点击标签时也能选中单选按钮。name
属性,确保同一组中的单选按钮互斥。<span>
标签创建一个自定义的选中标记(checkmark)。:checked
伪类来改变选中单选按钮的样式。+
选择器,选中单选按钮时改变相邻的 .checkmark
样式。:after
伪元素创建自定义的选中标记。通过这种方式,每个单选按钮的选中效果是独立的,不会影响到其他单选按钮。
领取专属 10元无门槛券
手把手带您无忧上云