├── .gitignore ├── .travis.yml ├── Classes ├── SWParallaxScrollView.h └── SWParallaxScrollView.mm ├── Demo ├── Images │ ├── back@2x.png │ ├── front@2x.png │ └── mid@2x.png ├── ParallaxScrollView-Info.plist ├── ParallaxScrollView-Prefix.pch ├── SWAppDelegate.h ├── SWAppDelegate.m ├── SWParallaxDemoViewController.h ├── SWParallaxDemoViewController.m └── main.m ├── LICENSE ├── ParallaxScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ParallaxScrollView.xccheckout └── xcshareddata │ └── xcschemes │ └── ParallaxScrollView.xcscheme ├── README.md └── SWParallaxScrollView.podspec /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | Pods 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/SWParallaxScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Classes/SWParallaxScrollView.h -------------------------------------------------------------------------------- /Classes/SWParallaxScrollView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Classes/SWParallaxScrollView.mm -------------------------------------------------------------------------------- /Demo/Images/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/Images/back@2x.png -------------------------------------------------------------------------------- /Demo/Images/front@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/Images/front@2x.png -------------------------------------------------------------------------------- /Demo/Images/mid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/Images/mid@2x.png -------------------------------------------------------------------------------- /Demo/ParallaxScrollView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/ParallaxScrollView-Info.plist -------------------------------------------------------------------------------- /Demo/ParallaxScrollView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/ParallaxScrollView-Prefix.pch -------------------------------------------------------------------------------- /Demo/SWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/SWAppDelegate.h -------------------------------------------------------------------------------- /Demo/SWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/SWAppDelegate.m -------------------------------------------------------------------------------- /Demo/SWParallaxDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/SWParallaxDemoViewController.h -------------------------------------------------------------------------------- /Demo/SWParallaxDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/SWParallaxDemoViewController.m -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/Demo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /ParallaxScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/ParallaxScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ParallaxScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/ParallaxScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ParallaxScrollView.xcodeproj/project.xcworkspace/xcshareddata/ParallaxScrollView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/ParallaxScrollView.xcodeproj/project.xcworkspace/xcshareddata/ParallaxScrollView.xccheckout -------------------------------------------------------------------------------- /ParallaxScrollView.xcodeproj/xcshareddata/xcschemes/ParallaxScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/ParallaxScrollView.xcodeproj/xcshareddata/xcschemes/ParallaxScrollView.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/README.md -------------------------------------------------------------------------------- /SWParallaxScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5sw/SWParallaxScrollView/HEAD/SWParallaxScrollView.podspec --------------------------------------------------------------------------------