反应本地动画以向上填充颜色?

时间:2019-01-28 11:51:53

标签: css react-native

这是从右到右的动画:

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使其从下到上进行动画制作,但没有成功。帮助吗?

0 个答案:

没有答案