Skip to content

ViewAnimator brings your UI to life with just one line

License

Notifications You must be signed in to change notification settings

jashion/ViewAnimator

 
 

Repository files navigation

ViewAnimator is a library for building complex iOS UIView animations in an easy way. It provides one line animations for any view included the ones which contain other views like UITableView and UICollectionView with its cells or UIStackView with its arrangedSubviews.

Version iOS 9+ Swift 4 License codebeat badge

Entire View         UITableView                                  UICollectionView

                   

SVG animations inspired by Luke Zhao's project Hero

Complex Layouts

UI created by Messaki, make sure to check out his profile.

Installation

CocoaPods

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

pod "ViewAnimator"

Manual

Drop the swift files inside of ViewAnimator/Classes into your project.

Usage

ViewAnimator provides a set of UIView extensions to easily add custom animations to your views.

AnimationType

Direction

Direction provides the axis where the animation should take place and it's movement direction.

let animation = AnimationType.from(direction: .top, offset: 30.0)
view.animate(animations: [animation])

Zoom

Zoom in and Zoom out animation support.

let animation = AnimationType.zoom(scale: 0.5)
view.animate(animations: [animation])

Animatable

UITableView, UICollectionView and UIStackView conform to Animatable protocol. This lets us animate their visible subviews or cells with only one function.

func animateViews(animations: [Animation],
                  initialAlpha: CGFloat,
                  finalAlpha: CGFloat,
                  delay: Double,
                  duration: TimeInterval,
                  animationInterval: TimeInterval,
                  completion: CompletionBlock?)

All of this parameters have default values except AnimationType. They can be modified globaly with ViewAnimatorConfig static properties.

Random Animations

If you are just trying to see how ViewAnimator can fit in your project and don't want to spend any time reading at docs or testing the animations just call view.animateRandom() on your UIViewController and you'll get a set of random animations for your subviews. UITableViews/UICollectionViews and UIStackViews will have their visible views animated individually with the same animation but with a delay between each view.

view.animateRandom()

Combined Animations

You can combine conformances of Animation to apply multiple transforms on your animation block.

        let fromAnimation = AnimationType.from(direction: .right, offset: 30.0)
        let zoomAnimation = AnimationType.zoom(scale: 0.2)
        let rotateAnimation = AnimationType.rotate(angle: CGFloat.pi/6)
        collectionView.animateViews(animations: [zoomAnimation, rotateAnimation], duration: 0.5)
        tableView.animateViews(animations: [fromAnimation, zoomAnimation], duration: 0.5)

Animation

Animation protocol provides you the posibility of expanding the animations supported by ViewAnimator with exception of the animateRandom function.

public protocol Animation {
    var initialTransform: CGAffineTransform { get }
}

TODO

  • Create protocol for the animations.
  • Support combining animations.
  • Add Carthage support.
  • Add SPM support.
  • Add more use cases to the example app.
  • Add autohide functionality.

Project Details

Requirements

  • Swift 4.0
  • Xcode 9.0+
  • iOS 9.0+

Contributing

Feel free to collaborate with ideas 💭, issues ⁉️ and/or pull requests 🔃.

If you use ViewAnimator in your app I'd love to hear about it and feature your animation here!

Author

Marcos Griselli | @marcosgriselli

Twitter Follow

License

Copyright (c) 2017 Marcos Griselli

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.

About

ViewAnimator brings your UI to life with just one line

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 95.7%
  • Ruby 4.3%