- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在网上寻找创建自定义复选框和单选按钮的方法。我已经设法创建了一个复选框,但我遇到的问题是单选框单击它不会激活或触发对我的输入的 onChange 调用。我目前有这个:
const customButtons = props => {
const [isChecked, setChecked] = React.useState(false);
const toggleCheck = e => {
setChecked(e.target.checked || !isChecked)
}
return (
<>
<span className={container}>
<input type={props.type} checked={isChecked} onChange={e => toggleCheck(e)} id={props.id} />
<span></span>
</span>
</>
)
}
我已经使用 css 获取覆盖单选按钮的跨度并制作了原始单选按钮 display: none;
但是当我点击跨圈时,它不会触发点击。我在跨度中添加了一个 onClick:<span onClick={toggleCheck}>
但这会导致单击两次时取消选中单选按钮。在保持原始行为的同时实现自定义单选按钮的更好方法是什么?
如果重要的话,我也在使用 scss。
最佳答案
如果输入未设置为 display: none
,您的方法适用于 radio
和 checkboxes
,当然就像正常输入一样。但是,如果您将它们设置为显示:无,则实际上是将它们隐藏在 UI 事件之外,因此它们根本不会触发任何点击。
TLDR: Better approach would be, set the
opacity: 0
on the input, use a label withhtmlFor
to trigger the change. Then style the label pseudo elements to look like radios.
这里是一个链接 Live Code Sandbox这里
由于您没有提供样式,因此很难说出您是如何在视觉上布置您的自定义输入的。用我的方法,
大多数用户界面在只需要一个选项进行选择时使用radios
,而在多个选择时使用checkboxes
。也就是说,很容易将状态从单个单选选项提升到父单选组组件,然后传递单选状态,同时让复选框控制它们各自的状态,因为它们被构建为彼此独立。
另一个观察结果是,您的 radio 缺少 name
属性(为什么您看到多次点击而变化很少或根本没有变化的原因
)使它们脱节从彼此。要将它们放在一个组中,它们需要共享一个共同的 name
属性,这样您就可以只针对每个 radio 的选项值。
一旦选择了没有公共(public)组(无名称属性)的所有单选选项,您就无法在 UI 上取消选择它们,因此它们不会触发任何进一步的 onChange 事件。出于这个原因,如果不是强制性的,建议添加一个重置选项以清除选项。
这是每个 radio 输入组件的代码。
const RadioInput = ({ name, label, value, isChecked, handleChange }) => {
const handleRadioChange = e => {
const { id } = e.currentTarget;
handleChange(id); // Send back id to radio group for comparison
};
return (
<div>
{/* Target this input: opacity 0 */}
<input
type="radio"
className="custom-radio"
name={name}
id={value} // htlmlFor targets this id.
checked={isChecked}
onChange={handleRadioChange}
/>
<label htmlFor={value}>
<span>{label}</span>
</label>
</div>
);
};
看,通常在编写自定义输入来覆盖原生输入时,如果您以 label
元素为目标并利用其 for
a.k.a htmlFor
会更容易> 属性来选择输入。从以前的努力来看,很难用自定义元素取悦所有屏幕阅读器,尤其是当您覆盖的 native input
设置为不显示时。
在我看来,最好将其绝对定位,将其不透明度设置为零,然后让标签触发它的变化。
链接到 Sandbox here
组件的完整代码
App.js
import React, { useState } from "react";
import "./styles.scss";
/*
Let Checkbox the controls its own state.
Styling 'custom-radio', but only make the borders square in .scss file.
*/
const CheckboxInput = ({ name, label }) => {
const [isChecked, setIsChecked] = useState(false);
const toggleCheck = e => {
setIsChecked(() => !isChecked);
};
return (
<div>
<input
type="checkbox"
className="custom-radio"
name={name}
id={name}
checked={isChecked}
onChange={toggleCheck}
/>
<label htmlFor={name}>
<span>{label}</span>
</label>
</div>
);
};
/*
The custom radio input, uses the same styles like the checkbox, and relies on the
radio group parent for its state.
*/
const RadioInput = ({ name, label, value, isChecked, handleChange }) => {
const handleRadioChange = e => {
const { id } = e.currentTarget;
handleChange(id);
};
return (
<div>
<input
type="radio"
className="custom-radio"
name={name}
id={value}
checked={isChecked}
onChange={handleRadioChange}
/>
<label htmlFor={value}>
<span>{label}</span>
</label>
</div>
);
};
/*
This is what control the radio options. Each radio input has the same name attribute
that way you can have multiple groups on the form.
*/
const RadioGropupInput = () => {
const [selectedInput, setSelectedInput] = useState("");
const handleChange = inputValue => {
setSelectedInput(inputValue);
};
return (
<>
<div>
{/*
You could map these values instead from an array of options
And an option to clear the selections if they are not mandatory.
PS: Add aria attributes for accessibility
*/}
<RadioInput
name="option"
value="option-1"
label="First Choice"
isChecked={selectedInput === "option-1"}
handleChange={handleChange}
/>
<RadioInput
name="option"
value="option-2"
label="Second Choice"
isChecked={selectedInput === "option-2"}
handleChange={handleChange}
/>
<RadioInput
name="option"
value="option-3"
label="Third Choice"
isChecked={selectedInput === "option-3"}
handleChange={handleChange}
/>
</div>
</>
);
};
export default () => (
<div className="App">
<RadioGropupInput />
<hr />
<CheckboxInput name="remember-me" label="Remember Me" />
<CheckboxInput name="subscribe" label="Subscribe" />
</div>
);
风格
.custom-radio {
/* Hide the input element and target the next label that comes after it in the DOM */
position: absolute;
display: inline-block;
opacity: 0;
& + label {
cursor: pointer;
display: inline-block;
position: relative;
white-space: nowrap;
line-height: 1rem;
margin: 0 0 1.5rem 0;
padding: 0 0 0 1rem;
transition: all 0.5s ease-in-out;
span {
margin-left: 0.5rem;
}
/* Styles these pseudo elements to look like radio inputs. */
&::before,
&::after {
content: '';
position: absolute;
color: #f5f5f5;
text-align: center;
border-radius: 0;
top: 0;
left: 0;
width: 1rem;
height: 1rem;
transition: all 0.5s ease-in-out;
}
&::before {
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1rem;
border-radius: 0;
background-color: #ffffff;
color: #ffffff;
box-shadow: inset 0 0 0 1px #666565, inset 0 0 0 1rem #ffffff,
inset 0 0 0 1rem #6b0707;
}
&:hover,
&:focus,
&:active {
color: red;
font-weight: bolder;
transition: all 0.3s ease;
outline: none;
&::before {
color: #ffffff;
animation-duration: 0.5s;
animation-name: changeSizeAnim;
animation-iteration-count: infinite;
animation-direction: alternate;
box-shadow: inset 0 0 0 1px #6b0707, inset 0 0 0 16px #ffffff,
inset 0 0 0 16px #6b0707;
}
}
}
&:focus,
&:hover,
&:checked {
& + label {
color: #220000 !important;
}
& + label::before {
animation-duration: 0.3s;
animation-name: selectCheckboxAnim;
animation-iteration-count: 1;
animation-direction: alternate;
border: solid 1px rgba(255, 0, 0, 0.5);
box-shadow: inset 0 0 0 1px #bc88d4, inset 0 0 0 0 #ffffff,
inset 0 0 1px 2px #6d1717;
}
}
&:checked {
& + label::before {
content: '✔'; /* Swap out this emoji checkmark with maybe an icon font of base svg*/
background-color: #d43333;
color: #ffffff;
border: solid 1px rgba(202, 50, 230, 0.5);
box-shadow: inset 0 0 0 1px #bc88d4, inset 0 0 0 0 #ffffff,
inset 0 0 0 16px #d43333;
}
}
& + label {
&::before {
border-radius: 50%;
}
}
&[type=checkbox] {
& + label {
&::before {
/* Remove the border radius on the checkboxes for a square effect */
border-radius: 0;
}
}
}
@keyframes changeSizeAnim {
from {
box-shadow: 0 0 0 0 #d43333,
inset 0 0 0 1px #d43333,
inset 0 0 0 16px #FFFFFF,
inset 0 0 0 16px #d43333;
}
to {
box-shadow: 0 0 0 1px #d43333,
inset 0 0 0 1px #d43333,
inset 0 0 0 16px #FFFFFF,
inset 0 0 0 16px #d43333;
}
}
/* Add some animations like a boss, cause why would you hustle to build
a custom component when you can't touch this!
*/
@keyframes selectCheckboxAnim {
0% {
box-shadow: 0 0 0 0 #bc88d4,
inset 0 0 0 2px #FFFFFF,
inset 0 0 0 3px #d43333,
inset 0 0 0 16px #FFFFFF,
inset 0 0 0 16px #d43333;
}
100% {
box-shadow: 0 0 20px 8px #eeddee,
inset 0 0 0 0 white,
inset 0 0 0 1px #bc88d4,
inset 0 0 0 0 #FFFFFF,
inset 0 0 0 16px #d43333;
}
}
}
/* Styles used to test out and reproduce out your approach */
.container.control-experiment {
background: #fee;
span,
input {
display: flex;
border: solid 1px red;
width: 2rem;
height: 2rem;
line-height: 2rem;
display: inline-block;
}
input {
position: absolute;
margin: 0;
padding: 0;
}
input[type='radio'] {
// display: none; /* Uncommenting this out makes all your inputs unsable.*/
}
}
我重复强调一下,不要忘记为自定义输入添加 aria 属性。您可以再次测试 live Sandbox
关于css - 如何创建自定义单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61901662/
前言: 有时候,一个数据库有多个帐号,包括数据库管理员,开发人员,运维支撑人员等,可能有很多帐号都有比较大的权限,例如DDL操作权限(创建,修改,删除存储过程,创建,修改,删除表等),账户多了,管理
所以我用 Create React App 创建并设置了一个大型 React 应用程序。最近我们开始使用 Storybook 来处理和创建组件。它很棒。但是,当我们尝试运行或构建应用程序时,我们不断遇
遵循我正在创建的控件的代码片段。这个控件用在不同的地方,变量也不同。 我正在尝试编写指令来清理代码,但在 {{}} 附近插入值时出现解析错误。 刚接触 Angular ,无法确定我错过了什么。请帮忙。
我正在尝试创建一个 image/jpeg jax-rs 提供程序类,它为我的基于 post rest 的 Web 服务创建一个图像。我无法制定请求来测试以下内容,最简单的测试方法是什么? @POST
我一直在 Windows 10 的模拟器中练习 c。后来我改用dev C++ IDE。当我在 C 中使用 FILE 时。创建的文件的名称为 test.txt ,而我给出了其他名称。请帮助解决它。 下面
当我们创建自定义 View 时,我们将 View 文件的所有者设置为自定义类,并使用 initWithFrame 或 initWithCode 对其进行实例化。 当我们创建 customUITable
我正在尝试为函数 * Producer 创建一个线程,但用于创建线程的行显示错误。我为这句话加了星标,但我无法弄清楚它出了什么问题...... #include #include #include
今天在做项目时,遇到了需要创建JavaScript对象的情况。所以Bing了一篇老外写的关于3种创建JavaScript对象的文章,看后跟着打了一遍代码。感觉方法挺好的,在这里与大家分享一下。 &
我正在阅读将查询字符串传递给 Amazon 的 S3 以进行身份验证的文档,但似乎无法理解 StringToSign 的创建和使用方式。我正在寻找一个具体示例来说明 (1) 如何构造 String
前言:我对 C# 中任务的底层实现不太了解,只了解它们的用法。为我在下面屠宰的任何东西道歉: 对于“我怎样才能开始一项任务但不等待它?”这个问题,我找不到一个好的答案。在 C# 中。更具体地说,即使任
我有一个由一些复杂的表达式生成的 ILookup。假设这是按姓氏查找人。 (在我们简单的世界模型中,姓氏在家庭中是唯一的) ILookup families; 现在我有两个对如何构建感兴趣的查询。 首
我试图创建一个 MSI,其中包含 和 exe。在 WIX 中使用了捆绑选项。这样做时出错。有人可以帮我解决这个问题。下面是代码: 错误 error LGH
在 Yii 中,Create 和 Update 通常使用相同的形式。因此,如果我在创建期间有电子邮件、密码、...other_fields...等字段,但我不想在更新期间专门显示电子邮件和密码字段,但
上周我一直在努力创建一个给定一行和一列的 QModelIndex。 或者,我会满足于在已经存在的 QModelIndex 中更改 row() 的值。 任何帮助,将不胜感激。 编辑: QModelInd
出于某种原因,这不起作用: const char * str_reset_command = "\r\nReset"; const char * str_config_command = "\r\nC
现在,我有以下由 original.df %.% group_by(Category) %.% tally() %.% arrange(desc(n)) 创建的 data.frame。 DF 5),
在今天之前,我使用/etc/vim/vimrc来配置我的vim设置。今天,我想到了创建.vimrc文件。所以,我用 touch .vimrc cat /etc/vim/vimrc > .vimrc 所
我可以创建一个 MKAnnotation,还是只读的?我有坐标,但我发现使用 setCooperative 手动创建 MKAnnotation 并不容易。 想法? 最佳答案 MKAnnotation
在以下代码中,第一个日志语句按预期显示小数,但第二个日志语句记录 NULL。我做错了什么? NSDictionary *entry = [[NSDictionary alloc] initWithOb
我正在使用与此类似的代码动态添加到数组; $arrayF[$f+1][$y][$x+1] = $value+1; 但是我在错误报告中收到了这个: undefined offset :1 问题:尝试创
我是一名优秀的程序员,十分优秀!