Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I implement an animated intro screen as IFTTT's?

Tags:

ios

I saw how awesome IFTTT's intro screen is and I also want to implement something that awesome in my app. How can I do it?

like image 497
David Roman Avatar asked Oct 11 '13 23:10

David Roman


2 Answers

Actually, IFTTT has open sourced the framework they created for this. It's called JazzHands and it's available on GitHub:

Jazz Hands is a simple, keyframe based animation framework for UIKit. Animations can be controlled via gestures, scroll views, kvo, or ReactiveCocoa.

Jazz Hands is used extensively in IFTTT for iPhone, most famously in the app intro.

like image 78
Marcelo Fabri Avatar answered Sep 24 '22 17:09

Marcelo Fabri


Recently, I created a UIScrollView subclass called DRDynamicSlideShow to easily implement touch-interactive slide shows like IFTTT's. Check it out, it takes only 1 line of code per animation!

https://github.com/Dromaguirre/DRDynamicSlideShow

like image 36
David Roman Avatar answered Sep 26 '22 17:09

David Roman