Реагируйте, доступ к определенному идентификатору (как на css работает: nth-child) - PullRequest
0 голосов
/ 04 сентября 2018

Я хочу добавить к первому и последнему элементам смещение (translateX) (слева и справа соответственно) при наведении курсора.

Как записать условие для id в этом случае?

На css проблема была решена :nth-child

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',
      position: 'relative',
      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/5hd3yt4z/

Ответы [ 2 ]

0 голосов
/ 04 сентября 2018

Даже без индекса вы можете сделать это ниже. Это необходимо только в том случае, если параметр больше одного

Ниже также действует

{[1,2,3].map(id => {
        // if (index === 0) { return other }
        // if (index === [1,2,3].length - 1) { return another }
        return <img key={id} style={this.getImgStyle(id)} src={this.props[`img${id}`]} onMouseOver={this.increase.bind(this, id)} onMouseOut={this.increase} />
    })}  
0 голосов
/ 04 сентября 2018

.map функция имеет индекс в качестве второго аргумента:

    {[1,2,3].map((id, index) => {
        // if (index === 0) { return other }
        // if (index === [1,2,3].length - 1) { return another }
        return <img style={this.getImgStyle(id)} src={this.props[`img${id}`]} onMouseOver={this.increase.bind(this, id)} onMouseOut={this.increase} />
    })}  
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...