怎么做iOS中的BooK封面动画?

时间:2013-09-13 05:51:24

标签: ios animation page-curl

即使我为页面添加了动画(使用过的UIpageViewController),我也想要用于相册书籍封面的页面翻转动画,但也需要有主页面动画。

请参阅this link,完全符合我的要求。

2 个答案:

答案 0 :(得分:3)

检查一下:

http://code4app.net/ios/Flip-Transform-View/4f75aa156803faa60f000000

浏览为代码参考提供的视频。

我想这就是你要找的东西。

答案 1 :(得分:1)

使用此代码,经过长时间工作后我解决了这个任务,感到高兴:) 更新:

[UIView setAnimationDelegate:self];
[UIView commitAnimations];
CATransform3D initialTransform = ges.view.layer.transform;
initialTransform.m34 = 1.0 / -1100;
layer.transform = initialTransform;
layer.anchorPoint = CGPointMake(-0.0, 0.5);
NSLog(@"%f %f",layer.frame.origin.x,layer.frame.origin.y);
[UIView beginAnimations:@"Scale" context:nil];
[UIView setAnimationDuration:3];
[UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
CATransform3D rotationAndPerspectiveTransform = ges.view.layer.transform;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, M_PI , 0 , -ges.view.bounds.size.height/2, 0);
layer.transform = rotationAndPerspectiveTransform;
[UIView setAnimationDelegate:self];
[UIView commitAnimations];

[UIView setAnimationDelegate:self];
[UIView commitAnimations];