React,每个数组元素的z-index

时间:2018-09-03 20:37:46

标签: css reactjs state z-index

不久前我在这里收到了答案,如何增加每个img作为数组的成员。尽管控制台显示z-index发生了变化,但z-index的相同原理却不知所措(增加的img应该位于其余部分的顶部)。为什么? enter image description here

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>                  
); 
}
}

https://jsfiddle.net/Nata_Hamster/fbs3m4jL/

2 个答案:

答案 0 :(得分:3)

position: 'relative',添加到getImgStyle返回的对象中,因为z-index仅在postion设置为static以外的其他设置(其默认值)时才起作用。最简单的方法是使用relative,因为该元素仍然是文档流的一部分。

https://jsfiddle.net/fbs3m4jL/7/

答案 1 :(得分:2)

这是因为默认情况下,图像元素的positionstatic

如果将图像位置更新为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)'
    };
  }

这里是working jsFiddle if you'd like to see it in action