为什么当焦点在输入域中时,Reaction中的数据闪烁?
有人能告诉我为什么当焦点在输入字段时,Reaction中的Datepicker闪烁吗?
我在演示中使用此日期选取器
https://www.npmjs.com/package/semantic-ui-calendar-react
但它在焦点上闪烁或者换句话说,当我聚焦到输入字段时,它首先在输入字段顶部显示,然后在输入字段下方显示,为什么? 以下是我的代码
https://codesandbox.io/s/prod-hill-mpurn
<div style={{ position: "absolute", top: 100, left: 100 }}>
<DateInput
name="date"
placeholder="Date"
value={date}
popupPosition="right"
onChange={handleChange}
/>
</div>
是否有更新?
解决方案
它的默认动画为scale
。您可以通过传递如下所示的道具`Animation={False}来将其关闭。
<DateInput
name="date"
placeholder="Date"
value={date}
popupPosition="right"
onChange={handleChange}
animation={false}
/>
CodeSandbox: https://codesandbox.io/s/hloid
相关文章