├── .gitignore ├── .travis.yml ├── Example ├── KLParallaxView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KLParallaxView-Example.xcscheme ├── KLParallaxView.xcworkspace │ └── contents.xcworkspacedata ├── KLParallaxView │ ├── Images.xcassets │ │ ├── 007.imageset │ │ │ ├── 007.png │ │ │ └── Contents.json │ │ ├── 1.imageset │ │ │ ├── 1.png │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.png │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.png │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.png │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── james.imageset │ │ │ ├── Contents.json │ │ │ └── james.png │ │ ├── lea.imageset │ │ │ ├── Contents.json │ │ │ └── lea.png │ │ └── spectrelogo.imageset │ │ │ ├── Contents.json │ │ │ └── spectrelogo.png │ ├── KLAppDelegate.h │ ├── KLAppDelegate.m │ ├── KLParallaxView-Info.plist │ ├── KLParallaxView-Prefix.pch │ ├── KLViewController.h │ ├── KLViewController.m │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── KLParallaxView │ │ │ └── KLParallaxView.h │ ├── Local Podspecs │ │ └── KLParallaxView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── KLParallaxView.xcscheme │ └── Target Support Files │ │ ├── KLParallaxView │ │ ├── Info.plist │ │ ├── KLParallaxView-dummy.m │ │ ├── KLParallaxView-prefix.pch │ │ ├── KLParallaxView-umbrella.h │ │ ├── KLParallaxView.modulemap │ │ └── KLParallaxView.xcconfig │ │ ├── Pods-KLParallaxView_Example │ │ ├── Info.plist │ │ ├── Pods-KLParallaxView_Example-acknowledgements.markdown │ │ ├── Pods-KLParallaxView_Example-acknowledgements.plist │ │ ├── Pods-KLParallaxView_Example-dummy.m │ │ ├── Pods-KLParallaxView_Example-frameworks.sh │ │ ├── Pods-KLParallaxView_Example-resources.sh │ │ ├── Pods-KLParallaxView_Example-umbrella.h │ │ ├── Pods-KLParallaxView_Example.debug.xcconfig │ │ ├── Pods-KLParallaxView_Example.modulemap │ │ └── Pods-KLParallaxView_Example.release.xcconfig │ │ └── Pods-KLParallaxView_Tests │ │ ├── Info.plist │ │ ├── Pods-KLParallaxView_Tests-acknowledgements.markdown │ │ ├── Pods-KLParallaxView_Tests-acknowledgements.plist │ │ ├── Pods-KLParallaxView_Tests-dummy.m │ │ ├── Pods-KLParallaxView_Tests-frameworks.sh │ │ ├── Pods-KLParallaxView_Tests-resources.sh │ │ ├── Pods-KLParallaxView_Tests-umbrella.h │ │ ├── Pods-KLParallaxView_Tests.debug.xcconfig │ │ ├── Pods-KLParallaxView_Tests.modulemap │ │ └── Pods-KLParallaxView_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── KLParallaxView.podspec ├── LICENSE.md ├── Pod ├── Assets │ ├── .gitkeep │ └── gloweffect.png └── Classes │ ├── .gitkeep │ ├── KLParallaxView.h │ └── KLParallaxView.m ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/KLParallaxView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/KLParallaxView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/KLParallaxView.xcodeproj/xcshareddata/xcschemes/KLParallaxView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView.xcodeproj/xcshareddata/xcschemes/KLParallaxView-Example.xcscheme -------------------------------------------------------------------------------- /Example/KLParallaxView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/007.imageset/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/007.imageset/007.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/007.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/007.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/1.imageset/1.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/2.imageset/2.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/3.imageset/3.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/4.imageset/4.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/5.imageset/5.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/james.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/james.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/james.imageset/james.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/james.imageset/james.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/lea.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/lea.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/lea.imageset/lea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/lea.imageset/lea.png -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/spectrelogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/spectrelogo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/KLParallaxView/Images.xcassets/spectrelogo.imageset/spectrelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Images.xcassets/spectrelogo.imageset/spectrelogo.png -------------------------------------------------------------------------------- /Example/KLParallaxView/KLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLAppDelegate.h -------------------------------------------------------------------------------- /Example/KLParallaxView/KLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLAppDelegate.m -------------------------------------------------------------------------------- /Example/KLParallaxView/KLParallaxView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLParallaxView-Info.plist -------------------------------------------------------------------------------- /Example/KLParallaxView/KLParallaxView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLParallaxView-Prefix.pch -------------------------------------------------------------------------------- /Example/KLParallaxView/KLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLViewController.h -------------------------------------------------------------------------------- /Example/KLParallaxView/KLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/KLViewController.m -------------------------------------------------------------------------------- /Example/KLParallaxView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/Main.storyboard -------------------------------------------------------------------------------- /Example/KLParallaxView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/KLParallaxView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/KLParallaxView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/KLParallaxView/KLParallaxView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/KLParallaxView.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/KLParallaxView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Local Podspecs/KLParallaxView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KLParallaxView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KLParallaxView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/KLParallaxView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/KLParallaxView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/KLParallaxView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KLParallaxView/KLParallaxView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/KLParallaxView/KLParallaxView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Example/Pods-KLParallaxView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Pods/Target Support Files/Pods-KLParallaxView_Tests/Pods-KLParallaxView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /KLParallaxView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/KLParallaxView.podspec -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/gloweffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Pod/Assets/gloweffect.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/KLParallaxView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Pod/Classes/KLParallaxView.h -------------------------------------------------------------------------------- /Pod/Classes/KLParallaxView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/Pod/Classes/KLParallaxView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klop/KLParallaxView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------