本机动画模块不支持获取样式属性“ left”,但动画未使用本机驱动程序。
状态:
this.state = {
bikeAnimated: new Animated.Value(95),
};
运行动画:
Animated.timing(this.state.bikeAnimated, {
toValue: 200,
duration: 800,
easing: Easing.ease
}).start();
(不使用本机驱动程序)
图像清晰度:
<Animated.Image
source={require("../../../assets/img/bike.png")}
style={{ left: this.state.bikeAnimated, marginBottom: 5 }}
/>