Flipboard首屏功能

avi*_*ash 1 iphone animation core-animation

请告诉我Flipboard的第一个屏幕动画功能.

His*_*erg 5

您正在寻找的是Ken Burns EffectPanning

这是应用它的代码..

        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:7];

        [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
        CGAffineTransform rotate = CGAffineTransformMakeRotation(0.00);
        CGAffineTransform moveLeft = CGAffineTransformMakeTranslation(0.9,0.9);
        CGAffineTransform combo1 = CGAffineTransformConcat(rotate, moveLeft);

        CGAffineTransform zoomOut = CGAffineTransformMakeScale(1.1,1.1);
        CGAffineTransform transform = CGAffineTransformConcat(zoomOut, combo1);
        background.transform = transform;
        [UIView commitAnimations];
Run Code Online (Sandbox Code Playgroud)

快乐编码:)