如何在React Native中单击时移动图像

时间:2017-03-30 21:20:49

标签: javascript dom react-native dom-manipulation

我最近一直在学习React Native,但却没有真正找到操纵DOM的方法。

我一直在努力做到这一点,如果我点击TouchableHighlight我的图像向下移动了几个px,但我还没有设法让它移动我真的不知道怎么离开这里。

我的onclick功能有效,因为每次单击按钮时它都会返回日志。

截至目前,我有这个:

export default class MainBody extends Component {

  onclick = () => {
    console.log('On click works')
  };

  render() {

    return (

      <ScrollView showsHorizontalScrollIndicator={false} style={Style.horList} horizontal={true}>

        <View >

          {/*i need to move this Image down!*/}
          <Image source={require("./img/example.png")}/>
          <View>
            <Text style={Style.peopleInvited}>This is text</Text>
          </View>

          {/*When clicked on this touchable highlight!*/}
          <TouchableHighlight onPress={this.onclick}}>
            <Image source={require('./img/moveImg.png')}/>
          </TouchableHighlight>
        </View>

      </ScrollView>
}

如果有人能帮我解决这个问题,我将不胜感激。 非常感谢您的参与!

1 个答案:

答案 0 :(得分:4)

有很多方法可以做到这一点,但也许最简单的方法是使用状态

class MainBody extends Component {
    constructor(props) {
        super(props);
        this.state = {
            top: 0 // Initial value
        };
    }
  onclick = () => {
    console.log('On click works')
    this.setState( { top: this.state.top + 5 }) // 5 is value of change.
};


  render() {

    return (

      <ScrollView showsHorizontalScrollIndicator={false} horizontal={true}>

        <View >

          {/*i need to move this Image down!*/}
          <Image style={{top: this.state.top}}source={require("./img/example.png")}/>
          <View>
            <Text>This is text</Text>
          </View>

          {/*When clicked on this touchable highlight!*/}
          <TouchableHighlight onPress={this.onclick}>
            <Image source={require("./img/moveImg.png")}/>
          </TouchableHighlight>
        </View>

      </ScrollView>
  );
  }
}