2

我已经检查了文档,现在它只说

在新视图中创建、配置动画(参见动画类型)

更新,配置已更新的动画视图(请参阅动画类型)

事实是我不明白 Anim 类型是什么以及我应该在哪里照顾它。谢谢您的帮助

https://facebook.github.io/react-native/docs/layoutanimation.html

4

1 回答 1

4

我在 react native 的 LayoutAnimation.js 源代码中找到了它

const TypesEnum = {
  spring: true,
  linear: true,
  easeInEaseOut: true,
  easeIn: true,
  easeOut: true,
  keyboard: true,
};


const PropertiesEnum = {
  opacity: true,
  scaleXY: true,
};

我可能错过了一些东西,如果有更多,请随时添加,谢谢:)

于 2017-07-12T08:55:02.860 回答