Facebook News paper app, full size image parallax effect
Asked Answered
D

1

6

I was playing with the Facebook paper app, and realized the parallax effect on the full size image is very cool. So i went to try it on my own app. but the parallax was not moving as smooth as the facebook paper app.

here is the code i used

UIInterpolatingMotionEffect *parallaxHorizontal = [[UIInterpolatingMotionEffect alloc]initWithKeyPath:@"center.x" 
                                                                                                type:UIInterpolatingMotionEffectTypeTiltAlongHorizontalAxis];
parallaxHorizontal.minimumRelativeValue = @-100.0;
parallaxHorizontal.maximumRelativeValue = @100.0;

[_myImageView addMotionEffect:interpolationHorizontal];

is there anyway to make the parallax move slightly faster and smoother, or achieve like facebook paper app.

Thanks!

Donothingism answered 8/2, 2014 at 7:59 Comment(0)
P
4

maybe you can try my answers on another post, but it was not accepted. but i was able to recreate the same effect.

https://mcmap.net/q/992658/-moving-an-image-with-ios-7-parallax-effect

Photocompose answered 8/2, 2014 at 8:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.