Code Monkey home page Code Monkey logo

kurians2006 / fastanimationwithpop Goto Github PK

View Code? Open in Web Editor NEW

This project forked from williamzang/fastanimationwithpop

0.0 1.0 0.0 834 KB

A very simplifty animation framework. Powerby Facebook POP(https://github.com/facebook/pop). Use 'fast animation' you can add animations without any lines of code. You can see the DEMO in project DEMO(https://github.com/WilliamZang/FastAnimationWithPopDemo).

License: MIT License

Ruby 13.98% Objective-C 84.83% Objective-C++ 1.19%

fastanimationwithpop's Introduction

FastAnimation

Build Status

A very simplifty animation framework. Powerby Facebook POP. Use fast animation you can add animations without any lines of code.

You can see the DEMO in project DEMO.

If you like this, please star me!

Demo

Features

  • Use property to add an animation to any view.
  • Auto run when awake from NIB.
  • You can also stop autorun and manual run animations.
  • Control the animation's detail, like delay, duration time, etc.
  • Use property to binding animations to a control.
  • Easy way to extension animations only create a class comform protocol FastAnimationProtocol,ControlFastAnimationProtocol, and FastAnimationReverseProtocol.

Requirements

Minimum iOS Target: iOS 6.0+

XCode version: 5.0+

Install

The easiest way to install FastAnimation is using CocoaPods:

  1. Add the pod to podfile pod 'FastAnimationWithPOP'

  2. Refresh your project pods pod install

If you want to see the new features, you can add pod pod 'FastAnimationWithPOP', :head to fetch the newest version.

Usage

1. Use it with a storyboard

You can add an animation to a view by setup the user defined runtime attributes.

Storyboard1

Storyboard2

Here's some property's meaning:

In UIView

  • animationType

    What animation would you like? You can give the answer with this property. You can use full class name, or without FAAnimation prefix.

  • delay

    When you don't want to start animation immediately, you can set a value for delay time with seconds.

  • animationParams

    This has a lot of functions. Each animation need own params. It's all in the property animationParams

    You can find the infomation in each animation header. Like this

#define kSpringBounciness   (@"animationParams.springBounciness")
#define kSpringSpeed        (@"animationParams.springSpeed")
#define kDynamicsTension    (@"animationParams.dynamicsTension")
#define kDynamicsFriction   (@"animationParams.dynamicsFriction")
#define kDynamicsMass       (@"animationParams.dynamicsMass")
  • startAnimationWhenAwakeFromNib

    Don't want to auto run? No problem. You can set NO to property startAnimationWhenAwakeFromNib

In UIControl

  • bindingAnimationType

    You can binding control's event with some animations.

2. Use it by coding

To use it by coding is as simple as using the storyboard.

You can just set the animation type property and perform - (void)startFAAnimation. Like this

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
view.backgroundColor = [UIColor redColor];
view.animationType = @"Shake";
view.animationParams[@"velocity"] = @-7000;
// You can also set params like this
// [view setValue:@-7000 forKeyPath:kShakeVelocity];
[view startFAAnimation];

You can also use other methods like:

// In UIView instance.
- (void)startFAAnimation;
- (void)reverseFAAnimation;
// In UIControl instance.
- (void)bindingFAAnimation;
- (void)unbindingFAAnimation;

3. Extension a new animiation

To extension a new animation, you just need create a new class conform protocol FastAnimationProtocol,ControlFastAnimationProtocol, and FastAnimationReverseProtocol.

Like this:

// new_animation.h
@interface FAAnimationNewAnimation : NSObject<FastAnimationProtocol, 
FastAnimationReverseProtocol> // Maybe only FastAnimationProtocol

@end
// new_animation.m
@implementation FAAnimationBounceRight

+ (void)performAnimation:(UIView *)view
{
    // some thing you like.
}

+ (void)stopAnimation:(UIView *)view
{
    // some thing you like.
}

+ (void)reverseAnimation:(UIView *)view
{
     // some thing you like.
}

+ (void)stopReverse:(UIView *)view
{
     // some thing you like.
}
@end

4. More animation control

  • stop animations:

If you want to stop animation, you can use following methods in UIView instance.

- (void)stopFAAnimation;
- (void)stopReverseFAAnimation;
  • nested animatinons:

You can use following methods in UIView instance to make a nested animation. All the subviews may move on.

- (void)startFAAnimationNested;
- (void)stopFAAnimationNested;
- (void)reverseFAAnimationNested;
- (void)stopReverseFAAnimationNested;

Now included animations:

  • Bounce animations: BounceLeft,BounceRight,BounceUp,BounceDown
  • Zoom in animations: ZoomInX,ZoomInY
  • Shake animation
  • Group animation
  • Zoom out animation
  • Button scale animation
  • More animations are waiting for your contribution...

TODO

  • Make the DEMO more beautiful.
  • Transition animiatons.
  • Make sure all the features have unit tests.
  • More fun and powerful animations.
  • iOS 5 support.
  • Swift support.

Contributing

First off, thank you for considering contributing to FastAnimation. It's people like you that make FastAnimation such a great library.

Not only add features or fix bugs, you can also fix my language mistakes(Sorry about my English!) or add more unit test or more guides or what ever.

1. Where do I go from here?

If you've noticed a bug or have a question you can make one issue!

2. Fork & create a branch

If this is something you think you can fix, then fork FastAnimationWithPOP and create a branch with a descriptive name.

If you want to give some beautiful DEMO, then fork FastAnimationWithPopDemo.

A good branch name would be (where issue #325 is the ticket you're working on):

git checkout -b 325-add-new-anmiation

3. Implement your fix or feature

At this point, you should be ready to make your changes! Don't hesitate to ask for help; everyone is a beginner at first ๐Ÿ˜ธ

4. Sync implement the DEMO

If you add a new animation. You'd better to add effect to FastAnimationWithPopDemo project.

5. Unit test

If it's a new feature. You'd better make it's unit test. You can make unit test in target FastAnimationWithPopTests.

6. Run tests against

Once you've implemented your code, please use Command+U to test it again.

We care about quality, so your PR won't be merged until all tests pass.

7. Make a Pull Request

At this point, you should switch back to your master branch and make sure it's up to date with FastAnimation's master branch:

git remote add upstream [email protected]:WilliamZang/FastAnimationWithPOP.git
git checkout master
git pull upstream master

Then update your feature branch from your local copy of master, and push it!

git checkout 325-add-new-anmiation
git rebase master
git push --set-upstream origin 325-add-new-anmiation

Finally, go to GitHub and make a Pull Request :D

8. Keeping your Pull Request updated

If a maintainer asks you to "rebase" your PR, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge.

To learn more about rebasing in Git, there are a lot of good resources, but here's the suggested workflow:

git checkout 325-add-new-anmiation
git pull --rebase upstream master
git push -f 325-add-new-anmiation

Licensing

The MIT License (MIT)

Copyright (c) 2014 William

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.

fastanimationwithpop's People

Contributors

williamzang avatar pws5068 avatar ddustin avatar

Watchers

Muhammad Naeem Paracha avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.