├── .gitignore ├── .swift-version ├── ChainableAnimations.podspec ├── Examples ├── JHChainableAnimations iOS Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── JHChainableAnimations iOS Swift Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── JHChainableAnimations tvOS Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── JHChainableAnimations tvOS Swift Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Frameworks-Swift ├── ChainableAnimations.h └── Info.plist ├── Frameworks-iOS ├── Info.plist └── JHChainableAnimations.h ├── Gifs ├── JHChainableAnimationsExample1.gif ├── JHChainableAnimationsExample2.gif └── JHChainableAnimationsExample3.gif ├── JHChainableAnimations.podspec ├── JHChainableAnimations.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── JHChainableAnimations-iOS-Swift.xcscheme │ ├── JHChainableAnimations-iOS.xcscheme │ ├── JHChainableAnimations-tvOS-Swift.xcscheme │ └── JHChainableAnimations-tvOS.xcscheme ├── JHChainableAnimations ├── ChainableAnimator.swift ├── JHAnimationChainLink.h ├── JHAnimationChainLink.m ├── JHChainableAnimator.h ├── JHChainableAnimator.m ├── JHChainableBlocks.h ├── JHKeyframeAnimation.h ├── JHKeyframeAnimation.m ├── JHKeyframeAnimationFunctions.c ├── JHKeyframeAnimationFunctions.h └── UIView+ChainableAnimator.swift ├── JHChainableAnimationsTests ├── Info.plist └── JHChainableAnimationsTests.m ├── LICENSE ├── README.md └── img ├── JHChainableAnimationsAnchors.png ├── JHChainableAnimationsEasing.png ├── JHChainableAnimationsEffects.png ├── JHChainableAnimationsExample1.png ├── JHChainableAnimationsExample2.png ├── JHChainableAnimationsExample3.png └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /ChainableAnimations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/ChainableAnimations.podspec -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/AppDelegate.h -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/AppDelegate.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/Info.plist -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/ViewController.h -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/ViewController.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Example/main.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/Info.plist -------------------------------------------------------------------------------- /Examples/JHChainableAnimations iOS Swift Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations iOS Swift Example/ViewController.swift -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/AppDelegate.h -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/AppDelegate.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/Info.plist -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/ViewController.h -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/ViewController.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Example/main.m -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/Info.plist -------------------------------------------------------------------------------- /Examples/JHChainableAnimations tvOS Swift Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Examples/JHChainableAnimations tvOS Swift Example/ViewController.swift -------------------------------------------------------------------------------- /Frameworks-Swift/ChainableAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Frameworks-Swift/ChainableAnimations.h -------------------------------------------------------------------------------- /Frameworks-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Frameworks-Swift/Info.plist -------------------------------------------------------------------------------- /Frameworks-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Frameworks-iOS/Info.plist -------------------------------------------------------------------------------- /Frameworks-iOS/JHChainableAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Frameworks-iOS/JHChainableAnimations.h -------------------------------------------------------------------------------- /Gifs/JHChainableAnimationsExample1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Gifs/JHChainableAnimationsExample1.gif -------------------------------------------------------------------------------- /Gifs/JHChainableAnimationsExample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Gifs/JHChainableAnimationsExample2.gif -------------------------------------------------------------------------------- /Gifs/JHChainableAnimationsExample3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/Gifs/JHChainableAnimationsExample3.gif -------------------------------------------------------------------------------- /JHChainableAnimations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.podspec -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-iOS-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-iOS-Swift.xcscheme -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-iOS.xcscheme -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-tvOS-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-tvOS-Swift.xcscheme -------------------------------------------------------------------------------- /JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations.xcodeproj/xcshareddata/xcschemes/JHChainableAnimations-tvOS.xcscheme -------------------------------------------------------------------------------- /JHChainableAnimations/ChainableAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/ChainableAnimator.swift -------------------------------------------------------------------------------- /JHChainableAnimations/JHAnimationChainLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHAnimationChainLink.h -------------------------------------------------------------------------------- /JHChainableAnimations/JHAnimationChainLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHAnimationChainLink.m -------------------------------------------------------------------------------- /JHChainableAnimations/JHChainableAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHChainableAnimator.h -------------------------------------------------------------------------------- /JHChainableAnimations/JHChainableAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHChainableAnimator.m -------------------------------------------------------------------------------- /JHChainableAnimations/JHChainableBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHChainableBlocks.h -------------------------------------------------------------------------------- /JHChainableAnimations/JHKeyframeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHKeyframeAnimation.h -------------------------------------------------------------------------------- /JHChainableAnimations/JHKeyframeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHKeyframeAnimation.m -------------------------------------------------------------------------------- /JHChainableAnimations/JHKeyframeAnimationFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHKeyframeAnimationFunctions.c -------------------------------------------------------------------------------- /JHChainableAnimations/JHKeyframeAnimationFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/JHKeyframeAnimationFunctions.h -------------------------------------------------------------------------------- /JHChainableAnimations/UIView+ChainableAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimations/UIView+ChainableAnimator.swift -------------------------------------------------------------------------------- /JHChainableAnimationsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimationsTests/Info.plist -------------------------------------------------------------------------------- /JHChainableAnimationsTests/JHChainableAnimationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/JHChainableAnimationsTests/JHChainableAnimationsTests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/README.md -------------------------------------------------------------------------------- /img/JHChainableAnimationsAnchors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsAnchors.png -------------------------------------------------------------------------------- /img/JHChainableAnimationsEasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsEasing.png -------------------------------------------------------------------------------- /img/JHChainableAnimationsEffects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsEffects.png -------------------------------------------------------------------------------- /img/JHChainableAnimationsExample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsExample1.png -------------------------------------------------------------------------------- /img/JHChainableAnimationsExample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsExample2.png -------------------------------------------------------------------------------- /img/JHChainableAnimationsExample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/JHChainableAnimationsExample3.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhurray/JHChainableAnimations/HEAD/img/logo.png --------------------------------------------------------------------------------