你如何在 ReactJS 中徘徊?- 在快速悬停期间鼠标未注册
2022-08-30 04:13:07
当您进行内联样式设置时,如何在 ReactJS 中实现悬停事件或活动事件?
我发现onMouseEnter,onMouseLeave方法是错误的,所以希望有另一种方法可以做到这一点。
具体来说,如果将鼠标悬停在组件上的速度非常快,则只会注册 onMouseEnter 事件。onMouseLeave 永远不会触发,因此无法更新状态...使组件看起来好像仍然悬停在上面。如果你尝试模仿“:active”css伪类,我注意到同样的事情。如果您单击得非常快,则只有 onMouseDown 事件才会注册。onMouseUp 事件将被忽略...使组件保持活动状态。
这是一个显示问题的JSFiddle:https://jsfiddle.net/y9swecyu/5/
JSFiddle有问题的视频:https://vid.me/ZJEO
代码:
var Hover = React.createClass({
getInitialState: function() {
return {
hover: false
};
},
onMouseEnterHandler: function() {
this.setState({
hover: true
});
console.log('enter');
},
onMouseLeaveHandler: function() {
this.setState({
hover: false
});
console.log('leave');
},
render: function() {
var inner = normal;
if(this.state.hover) {
inner = hover;
}
return (
<div style={outer}>
<div style={inner}
onMouseEnter={this.onMouseEnterHandler}
onMouseLeave={this.onMouseLeaveHandler} >
{this.props.children}
</div>
</div>
);
}
});
var outer = {
height: '120px',
width: '200px',
margin: '100px',
backgroundColor: 'green',
cursor: 'pointer',
position: 'relative'
}
var normal = {
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
backgroundColor: 'red',
opacity: 0
}
var hover = {
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
backgroundColor: 'red',
opacity: 1
}
React.render(
<Hover></Hover>,
document.getElementById('container')
)