1

我设置了一个简单的动画值,例如:

this.state = {
    filterOffset = new Animated.Value(0)
}

handleToogle() {
    var _toValue = this.state.filterOffset.interpolate({
        inputRange: [0, 1],
        outputRange: [1, 0]
    })
    Animated.timing(this.state.filterOffset, {
        toValue: _toValue,
        duration: 100
    }).start()
}

<View onPress={() => this.handleToogle()}>
</View>

在这里我想切换一个视图。

如果为 1,我只想将值设置为 0,反之亦然,以便我可以将样式相应地应用于另一个动画视图。

是否有可能我可以将动画值设置为动画值。

它不适合我吗?或者有更好的方法来做到这一点

4

0 回答 0