├── LICENSE ├── README.md ├── SimpleParallax.swift ├── SimpleParallaxDemo ├── SimpleParallaxDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── julianpraest.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── julianpraest.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SimpleParallaxDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── bg1Demo.imageset │ │ ├── Contents.json │ │ └── bg1Demo.png │ ├── bg1Demo2.imageset │ │ ├── Contents.json │ │ └── bg1Demo2.png │ ├── bg2Demo.imageset │ │ ├── Contents.json │ │ └── bg2Demo.png │ └── bg2Demo2.imageset │ │ ├── Contents.json │ │ └── bg2Demo2.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SimpleParallax.swift │ └── ViewController.swift ├── logo.png └── simpleParallaxDemo.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/README.md -------------------------------------------------------------------------------- /SimpleParallax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallax.swift -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/xcuserdata/julianpraest.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/project.xcworkspace/xcuserdata/julianpraest.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/xcuserdata/julianpraest.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo.xcodeproj/xcuserdata/julianpraest.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/AppDelegate.swift -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo.imageset/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo.imageset/bg1Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo.imageset/bg1Demo.png -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo2.imageset/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo2.imageset/bg1Demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg1Demo2.imageset/bg1Demo2.png -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo.imageset/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo.imageset/bg2Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo.imageset/bg2Demo.png -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo2.imageset/Contents.json -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo2.imageset/bg2Demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Assets.xcassets/bg2Demo2.imageset/bg2Demo2.png -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/Info.plist -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/SimpleParallax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/SimpleParallax.swift -------------------------------------------------------------------------------- /SimpleParallaxDemo/SimpleParallaxDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/SimpleParallaxDemo/SimpleParallaxDemo/ViewController.swift -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/logo.png -------------------------------------------------------------------------------- /simpleParallaxDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIxUX/SimpleParallax/HEAD/simpleParallaxDemo.gif --------------------------------------------------------------------------------