Skip to content

ipagong/PGViewAnimationable

Repository files navigation

PGViewAnimationable

CI Status Version License Platform

It simply provide view animations with enum type (left/right/up/down/fade)

You can simple use it through protocol with your custom views. (but, recommend it with clear backgroundcolor.)

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

appetize.io demo : [ here ]

Make custom view with ViewAnimationable protocol.

class XxxxImageView: UIImageView, ViewAnimationable {

    /* required protocl variable. */
    public var type:ViewAnimationType = .up

    /* use executeAnimation methods when you need. */
    public func startXxxxAnimation() {
        executeAnimation {
            /* do something. between animation. */
            // in this sample, need to change image.
        }
    }
}

Requirements

  • above ios 8.0
  • swift 5.0
  • with cocoapods

Installation

PGViewAnimationable is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "PGViewAnimationable"

Author

ipagong, ipagong.dev@gmail.com

License

PGViewAnimationable is available under the MIT license. See the LICENSE file for more info.

About

Simple View Animation Protocol.

Resources

License

Stars

Watchers

Forks

Packages

No packages published