gpt4 book ai didi

reactjs - 如何重置 react 原生动画?

转载 作者:行者123 更新时间:2023-12-03 13:28:01 25 4
gpt4 key购买 nike

我使用 react-native 中的 Animated 制作了一些简单的动画动画在第一次 onPress 后按预期工作,但我不知道如何重置它,使其适用于下一次点击。

constructor(props) {
super(props);
this.spinValue = new Animated.Value(0);
// Second interpolate beginning and end values (in this case 0 and 1)
this.spin = this.spinValue.interpolate({
inputRange: [0, 1, 2, 3, 4],
outputRange: ['0deg', '4deg', '0deg', '-4deg', '0deg']
});
}

handlePress() {
// First set up animation
Animated.timing(
this.spinValue,
{
toValue: 4,
duration: 300,
}
).start();
}

在渲染中

<TouchableWithoutFeedback onPress={() => { this.handlePress(); }} >
<Animated.Image
source={someImg}
style={{ height: undefined, width: undefined, flex: 1, transform: [{ rotate: this.spin }, { perspective: 1000 }] }}
resizeMode={'contain'}
resizeMethod="resize"
/>
</TouchableWithoutFeedback>

有什么建议吗?谢谢

最佳答案

您可以使用this.spinValue.setValue(0)来重置它。您可以将其添加到handlePress 的开头。

关于reactjs - 如何重置 react 原生动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51712114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com