├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── TKParallaxScrollView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TKParallaxScrollView-Example.xcscheme ├── TKParallaxScrollView │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── img_header.imageset │ │ │ ├── Contents.json │ │ │ ├── img_header@1x.png │ │ │ ├── img_header@2x.png │ │ │ └── img_header@3x.png │ │ └── img_mid.imageset │ │ │ ├── Contents.json │ │ │ ├── img_mid@1x.png │ │ │ ├── img_mid@2x.png │ │ │ └── img_mid@3x.png │ ├── LaunchScreen.xib │ ├── TKAppDelegate.h │ ├── TKAppDelegate.m │ ├── TKParallaxScrollView-Info.plist │ ├── TKParallaxScrollView-Prefix.pch │ ├── TKParallaxScrollView.h │ ├── TKParallaxScrollView.m │ ├── TKViewController.h │ ├── TKViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TKParallaxScrollView.h │ └── TKParallaxScrollView.m ├── README.md ├── SampleImages ├── test_h_n_m_n.gif ├── test_h_n_m_y.gif ├── test_h_y_m_n.gif └── test_h_y_m_y.gif ├── TKParallaxScrollView.podspec ├── TKParallaxScrollView ├── .gitkeep ├── TKParallaxScrollView.h └── TKParallaxScrollView.m └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/TKParallaxScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TKParallaxScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TKParallaxScrollView.xcodeproj/xcshareddata/xcschemes/TKParallaxScrollView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView.xcodeproj/xcshareddata/xcschemes/TKParallaxScrollView-Example.xcscheme -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@1x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@2x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_header.imageset/img_header@3x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@1x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@2x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/Images.xcassets/img_mid.imageset/img_mid@3x.png -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKAppDelegate.h -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKAppDelegate.m -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKParallaxScrollView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKParallaxScrollView-Info.plist -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKParallaxScrollView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKParallaxScrollView-Prefix.pch -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKParallaxScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKParallaxScrollView.h -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKParallaxScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKParallaxScrollView.m -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKViewController.h -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/TKViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/TKViewController.m -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/TKParallaxScrollView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/TKParallaxScrollView/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/TKParallaxScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Pod/Classes/TKParallaxScrollView.h -------------------------------------------------------------------------------- /Pod/Classes/TKParallaxScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/Pod/Classes/TKParallaxScrollView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/README.md -------------------------------------------------------------------------------- /SampleImages/test_h_n_m_n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/SampleImages/test_h_n_m_n.gif -------------------------------------------------------------------------------- /SampleImages/test_h_n_m_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/SampleImages/test_h_n_m_y.gif -------------------------------------------------------------------------------- /SampleImages/test_h_y_m_n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/SampleImages/test_h_y_m_n.gif -------------------------------------------------------------------------------- /SampleImages/test_h_y_m_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/SampleImages/test_h_y_m_y.gif -------------------------------------------------------------------------------- /TKParallaxScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/TKParallaxScrollView.podspec -------------------------------------------------------------------------------- /TKParallaxScrollView/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TKParallaxScrollView/TKParallaxScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/TKParallaxScrollView/TKParallaxScrollView.h -------------------------------------------------------------------------------- /TKParallaxScrollView/TKParallaxScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokaholic/TKParallaxScrollView/HEAD/TKParallaxScrollView/TKParallaxScrollView.m -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------