是否有 LayoutAnimation.Types 和 LayoutAnimation.Properties 的可用选项列表?
Posted
技术标签:
【中文标题】是否有 LayoutAnimation.Types 和 LayoutAnimation.Properties 的可用选项列表?【英文标题】:Is threre a list of available options for LayoutAnimation.Types and LayoutAnimation.Properties? 【发布时间】:2017-07-12 08:30:14 【问题描述】:我已经检查了文档,现在它只说
在新视图中创建、配置动画(参见动画类型)
更新,用于动画已更新视图的配置(参见动画类型)
事实是我不明白 Anim 类型是什么以及我应该在哪里照顾它。感谢您的帮助
https://facebook.github.io/react-native/docs/layoutanimation.html
【问题讨论】:
【参考方案1】:我在 react native 的 LayoutAnimation.js 源代码中找到了它
const TypesEnum =
spring: true,
linear: true,
easeInEaseOut: true,
easeIn: true,
easeOut: true,
keyboard: true,
;
const PropertiesEnum =
opacity: true,
scaleXY: true,
;
我可能错过了一些东西,如果有更多,请随时添加,谢谢:)
【讨论】:
以上是关于是否有 LayoutAnimation.Types 和 LayoutAnimation.Properties 的可用选项列表?的主要内容,如果未能解决你的问题,请参考以下文章
是否有更快的方法来检查是否存在数千个 NSManagedObject 项目?