使用 Core 动画在 iOS 中打开纸张动画
Open paper animation in iOS using Core animation
如何实现这个iOS 7 使用CALayer的折纸动画。
提前致谢。
希望这能有所帮助,在 https://github.com/mpospese/MPFoldTransition
中获取示例
如果您不想达到那样的效果,您应该开始学习 CALayer
,尤其是这个子类 CATransformLayer
及其 属性 -sublayerTransform
。
CATransformLayer objects are used to create true 3D layer hierarchies,
rather than the flattened hierarchy rendering model used by other
CALayer classes.
Unlike normal layers, transform layers do not flatten their sublayers
into the plane at Z=0.
这是一个很好的起点Create a fold animation。
如何实现这个iOS 7 使用CALayer的折纸动画。 提前致谢。
希望这能有所帮助,在 https://github.com/mpospese/MPFoldTransition
中获取示例如果您不想达到那样的效果,您应该开始学习 CALayer
,尤其是这个子类 CATransformLayer
及其 属性 -sublayerTransform
。
CATransformLayer objects are used to create true 3D layer hierarchies, rather than the flattened hierarchy rendering model used by other CALayer classes.
Unlike normal layers, transform layers do not flatten their sublayers into the plane at Z=0.
这是一个很好的起点Create a fold animation。