不久前我在这里收到了答案,如何增加每个img作为数组的成员。尽管控制台显示z-index发生了变化,但z-index的相同原理却不知所措(增加的img应该位于其余部分的顶部)。为什么?
class Article extends React.Component{
constructor(props) {
super(props)
this.state = {showIncreaced: null}
this.getImgStyle = this.getImgStyle.bind(this);
this.increase = this.increase.bind(this);
}
increase (incId) {
this.setState({showIncreaced: incId})
}
getImgStyle (id) {
return {
width: '20vw',
marginRight: '0.5vw',
marginLeft: '0.5vw',
zIndex: this.state.showIncreaced === id ? '10' : '0',
transform: this.state.showIncreaced === id ? 'scale(1.5, 1.5)' : 'scale(1, 1)'
};
}
render(){
const TipStyle={
marginBottom: '10px'
}
return(
<div style={TipStyle}>
<h2 style={{marginBottom: '1px'}}>{this.props.name}</h2>
<div>
{[1,2,3].map((id) => {
return <img style={this.getImgStyle(id)} src={this.props[`img${id}`]} onMouseOver={this.increase.bind(this, id)} onMouseOut={this.increase} />
})}
</div>
</div>
);
}
}
答案 0 :(得分:3)
将position: 'relative',
添加到getImgStyle
返回的对象中,因为z-index
仅在postion
设置为static
以外的其他设置(其默认值)时才起作用。最简单的方法是使用relative
,因为该元素仍然是文档流的一部分。
答案 1 :(得分:2)
这是因为默认情况下,图像元素的position
是static
。
如果将图像位置更新为position:absolute;
,则zIndex
值将按预期工作。要注意的是,您需要使用左坐标定位图像,使它们彼此相邻放置。这是getImgStyle
的更新版本,它说明了这个概念:
getImgStyle (id) {
return {
position:'absolute', // Set absolute position
left: `${(id-1) * 100}px`, // Calculate a left coordinate for image
width: '20vw',
marginRight: '0.5vw',
marginLeft: '0.5vw',
zIndex: this.state.showIncreaced === id ? '10' : '0',
transform: this.state.showIncreaced === id ? 'scale(1.5, 1.5)' : 'scale(1, 1)'
};
}