Popularity
3.6
Stable
Activity
0.0
Stable
186
7
31

Programming language: Objective-C++
License: MIT License
Tags: Animation    
Latest version: v1.0

Pop By Example alternatives and similar libraries

Based on the "Animation" category.
Alternatively, view Pop By Example alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Pop By Example or a related project?

Add another 'Animation' Library

README

Facebook's Pop Framework, By Examples

This project is a tutorial (Check tutorial here) for how to use Pop framework by Facebook. Its very easy and effecient framework that helps you to make decent animation in no time. In this project you will find some simple demoes, they are not big demoes but I promise you, they will help you in mastering the framework.

What is Pop?

Pop is an extensible animation engine for both iOS and OS X. In addition to basic animations including Linear, Ease-In, Ease-Out, Ease-In-Ease-Out animations, it supports spring (at the time of its release, spring animation was not supported in iOS), decay and custom animations:

  • Spring: dynamic animation that creates a nice bouncing effect.
  • Decay: dynamic animation that brings a movement to a smooth halt.
  • Custom: because the engine is designed to be extensible, you can create your own custom animations.

The Pop API is very developer friendly that lets you easily build some realistic, physics-based interactions. For instance, here is the code snippet for creating a spring animation on a text label:

POPSpringAnimation *sprintAnimation = [POPSpringAnimation animationWithPropertyNamed:kPOPViewScaleXY];
sprintAnimation.toValue = [NSValue valueWithCGPoint:CGPointMake(0.9, 0.9)];
sprintAnimation.velocity = [NSValue valueWithCGPoint:CGPointMake(2, 2)];
sprintAnimation.springBounciness = 20.f;
[self.textLabel pop_addAnimation:sprintAnimation forKey:@"springAnimation"];

For Swift Lovers

Navigate to this "Swift Version" folder or (click here) to see the full working exmples written in Swift.

Pop Examples

Animate UITableView cells selection:

Facebook Messenger Send/Like animation:

UITextField wrong entry animation:

Custom Transition for Modal ViewControllers:

License

The MIT License (MIT)

Copyright (c) 2014 Hossam Ghareeb ([email protected])

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


*Note that all licence references and agreements mentioned in the Pop By Example README section above are relevant to that project's source code only.