对标题感到抱歉,我无法想到如何简洁地说出来。
所以我有一组按钮作为React组件的一部分:
export default class AdvancedSearch extends React.Component{
hover(){
}
render(){
return(
<div className="btn-group">
<button id="star1" type="button" className="btn btn-default" onMouseEnter={() => this.hover()}><span className="glyphicon glyphicon-star-empty"></span></button>
<button id="star2" type="button" className="btn btn-default" onMouseEnter={() => this.hover()}><span className="glyphicon glyphicon-star-empty"></span></button>
<button id="star3" type="button" className="btn btn-default" onMouseEnter={() => this.hover()}><span className="glyphicon glyphicon-star-empty"></span></button>
<button id="star4" type="button" className="btn btn-default" onMouseEnter={() => this.hover()}><span className="glyphicon glyphicon-star-empty"></span></button>
<button id="star5" type="button" className="btn btn-default" onMouseEnter={() => this.hover()}><span className="glyphicon glyphicon-star-empty"></span></button>
</div>
);
}
我想要发生的是当我将鼠标悬停在一个按钮上时,其左侧的所有按钮都会改变背景,就好像它们也悬停在一起。我不知道我可以在悬停功能中放置什么来实现这一点,或者如果这甚至是最好的方法来做到这一点。获得这种效果的最佳方法是什么?此外,我也希望能够在单击按钮时执行相同的操作。
答案 0 :(得分:1)
使用组件状态和CSS类。
export default class AdvancedSearch extends React.Component{
getInitialState() {
return {
hoveredIndex: -1
};
}
hover(index){
this.setState({
hoveredIndex: index
});
}
leave() {
this.setState({
hoveredIndex: -1
});
}
render(){
var buttons = [];
for (var i = 0; i < 5; i++) {
let className = 'glyphicon';
if (i <= this.state.hoveredIndex)
className += ' glyphicon-star';
else
className += ' glyphicon-star-empty';
buttons.push(
<button id={'star'+(i+1)} type="button" className="btn btn-default" onMouseEnter={this.hover.bind(this, i)} onMouseLeave={this.leave}><span className={className}></span></button>
);
}
return(
<div className="btn-group">
{buttons}
</div>
);
}
你应该能够从点击事件或任何其他形式的转变中获得灵感;)