这是从右到右的动画:
const styles = StyleSheet.create({
progress: {
backgroundColor: 'blue',
height: 100,
width: 2
}
});
<Animated.View
style={[
styles.progress,
{
transform: [
{
scaleX: percent.interpolate({
inputRange: [0, 100],
outputRange: [0, Dimensions.get('window').width]
})
}
]
}
]}
/>
我尝试使用scaleY使其从下到上进行动画制作,但没有成功。帮助吗?