├── DemoPic ├── GIF.gif └── JPG.jpg ├── Example ├── JZtvOSParallaxButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── Fincher.xcuserdatad │ │ └── xcschemes │ │ ├── JZtvOSParallaxButton-Example.xcscheme │ │ └── xcschememanagement.plist ├── JZtvOSParallaxButton.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Fincher.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── JZtvOSParallaxButton │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── BackGround.imageset │ │ │ ├── Contents.json │ │ │ ├── iPhone 6.png │ │ │ ├── iPhone 6@2x.png │ │ │ └── iPhone 6@3x.png │ │ ├── Contents.json │ │ ├── INCEPTION1.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0005_1.png │ │ ├── INCEPTION2.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0004_2.png │ │ ├── INCEPTION3.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0003_3.png │ │ ├── INCEPTION4.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0002_4.png │ │ ├── INCEPTION5.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0001_5.png │ │ ├── INCEPTION6.imageset │ │ │ ├── Contents.json │ │ │ └── INCEPTION5_0000_6.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── Layer1.imageset │ │ │ ├── Contents.json │ │ │ └── tvOS-Gear_0003_Hole.png │ │ ├── Layer2.imageset │ │ │ ├── Contents.json │ │ │ └── Layer_0002_Bottom-Gear.png │ │ ├── Layer3.imageset │ │ │ ├── Contents.json │ │ │ └── Layer_0001_Top-Gear.png │ │ ├── Layer4.imageset │ │ │ ├── Contents.json │ │ │ └── Layer_0000_Plate.png │ │ ├── tvOS-Poster_01.imageset │ │ │ ├── Contents.json │ │ │ └── tvOS-Poster4.png │ │ ├── tvOS-Poster_02.imageset │ │ │ ├── Contents.json │ │ │ └── tvOS-Poster2.png │ │ ├── tvOS-Poster_03.imageset │ │ │ ├── Contents.json │ │ │ └── tvOS-Poster1.png │ │ └── tvOS-Poster_04.imageset │ │ │ ├── Contents.json │ │ │ └── tvOS-Poster.png │ ├── JZAppDelegate.h │ ├── JZAppDelegate.m │ ├── JZViewController.h │ ├── JZViewController.m │ ├── JZtvOSParallaxButton-Info.plist │ ├── JZtvOSParallaxButton-Prefix.pch │ ├── Launch Screen.storyboard │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── JZtvOSParallaxButton │ │ │ └── JZParallaxButton.h │ ├── Local Podspecs │ │ └── JZtvOSParallaxButton.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── JZtvOSParallaxButton.xcscheme │ │ └── xcuserdata │ │ │ └── Fincher.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── JZtvOSParallaxButton-JZParallaxButton.xcscheme │ │ │ ├── Pods-JZtvOSParallaxButton_Example.xcscheme │ │ │ ├── Pods-JZtvOSParallaxButton_Tests.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── JZtvOSParallaxButton │ │ ├── Info.plist │ │ ├── JZtvOSParallaxButton-dummy.m │ │ ├── JZtvOSParallaxButton-prefix.pch │ │ ├── JZtvOSParallaxButton-umbrella.h │ │ ├── JZtvOSParallaxButton.modulemap │ │ └── JZtvOSParallaxButton.xcconfig │ │ ├── Pods-JZtvOSParallaxButton_Example │ │ ├── Info.plist │ │ ├── Pods-JZtvOSParallaxButton_Example-acknowledgements.markdown │ │ ├── Pods-JZtvOSParallaxButton_Example-acknowledgements.plist │ │ ├── Pods-JZtvOSParallaxButton_Example-dummy.m │ │ ├── Pods-JZtvOSParallaxButton_Example-frameworks.sh │ │ ├── Pods-JZtvOSParallaxButton_Example-resources.sh │ │ ├── Pods-JZtvOSParallaxButton_Example-umbrella.h │ │ ├── Pods-JZtvOSParallaxButton_Example.debug.xcconfig │ │ ├── Pods-JZtvOSParallaxButton_Example.modulemap │ │ └── Pods-JZtvOSParallaxButton_Example.release.xcconfig │ │ └── Pods-JZtvOSParallaxButton_Tests │ │ ├── Info.plist │ │ ├── Pods-JZtvOSParallaxButton_Tests-acknowledgements.markdown │ │ ├── Pods-JZtvOSParallaxButton_Tests-acknowledgements.plist │ │ ├── Pods-JZtvOSParallaxButton_Tests-dummy.m │ │ ├── Pods-JZtvOSParallaxButton_Tests-frameworks.sh │ │ ├── Pods-JZtvOSParallaxButton_Tests-resources.sh │ │ ├── Pods-JZtvOSParallaxButton_Tests-umbrella.h │ │ ├── Pods-JZtvOSParallaxButton_Tests.debug.xcconfig │ │ ├── Pods-JZtvOSParallaxButton_Tests.modulemap │ │ └── Pods-JZtvOSParallaxButton_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── JZtvOSParallaxButton.podspec ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── Spotlight.png │ ├── Spotlight@2x.png │ └── Spotlight@3x.png └── Classes │ ├── .gitkeep │ ├── JZParallaxButton.h │ └── JZParallaxButton.m ├── README.md └── _Pods.xcodeproj /DemoPic/GIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/DemoPic/GIF.gif -------------------------------------------------------------------------------- /DemoPic/JPG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/DemoPic/JPG.jpg -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/JZtvOSParallaxButton-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/JZtvOSParallaxButton-Example.xcscheme -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton.xcworkspace/xcuserdata/Fincher.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton.xcworkspace/xcuserdata/Fincher.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6@2x.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/BackGround.imageset/iPhone 6@3x.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION1.imageset/INCEPTION5_0005_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION1.imageset/INCEPTION5_0005_1.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION2.imageset/INCEPTION5_0004_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION2.imageset/INCEPTION5_0004_2.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION3.imageset/INCEPTION5_0003_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION3.imageset/INCEPTION5_0003_3.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION4.imageset/INCEPTION5_0002_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION4.imageset/INCEPTION5_0002_4.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION5.imageset/INCEPTION5_0001_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION5.imageset/INCEPTION5_0001_5.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION6.imageset/INCEPTION5_0000_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/INCEPTION6.imageset/INCEPTION5_0000_6.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer1.imageset/tvOS-Gear_0003_Hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer1.imageset/tvOS-Gear_0003_Hole.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer2.imageset/Layer_0002_Bottom-Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer2.imageset/Layer_0002_Bottom-Gear.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer3.imageset/Layer_0001_Top-Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer3.imageset/Layer_0001_Top-Gear.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/Layer4.imageset/Layer_0000_Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/Layer4.imageset/Layer_0000_Plate.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_01.imageset/tvOS-Poster4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_01.imageset/tvOS-Poster4.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_02.imageset/tvOS-Poster2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_02.imageset/tvOS-Poster2.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_03.imageset/tvOS-Poster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_03.imageset/tvOS-Poster1.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_04.imageset/tvOS-Poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Images.xcassets/tvOS-Poster_04.imageset/tvOS-Poster.png -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZAppDelegate.h -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZAppDelegate.m -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZViewController.h -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZViewController.m -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZtvOSParallaxButton-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZtvOSParallaxButton-Info.plist -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/JZtvOSParallaxButton-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/JZtvOSParallaxButton-Prefix.pch -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/Main.storyboard -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JZtvOSParallaxButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/JZtvOSParallaxButton/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JZtvOSParallaxButton/JZParallaxButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JZParallaxButton.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JZtvOSParallaxButton.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Local Podspecs/JZtvOSParallaxButton.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/JZtvOSParallaxButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/JZtvOSParallaxButton.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/JZtvOSParallaxButton-JZParallaxButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/JZtvOSParallaxButton-JZParallaxButton.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/Pods-JZtvOSParallaxButton_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/Pods-JZtvOSParallaxButton_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/Pods-JZtvOSParallaxButton_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/Pods-JZtvOSParallaxButton_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/Fincher.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/JZtvOSParallaxButton/JZtvOSParallaxButton.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Example/Pods-JZtvOSParallaxButton_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Pods/Target Support Files/Pods-JZtvOSParallaxButton_Tests/Pods-JZtvOSParallaxButton_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JZtvOSParallaxButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/JZtvOSParallaxButton.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/Spotlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Pod/Assets/Spotlight.png -------------------------------------------------------------------------------- /Pod/Assets/Spotlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Pod/Assets/Spotlight@2x.png -------------------------------------------------------------------------------- /Pod/Assets/Spotlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Pod/Assets/Spotlight@3x.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/JZParallaxButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Pod/Classes/JZParallaxButton.h -------------------------------------------------------------------------------- /Pod/Classes/JZParallaxButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/Pod/Classes/JZParallaxButton.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinFincher/JZtvOSParallaxButton/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------