├── README.md ├── ScrollBlurView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── ScrollBlurView.xccheckout │ └── xcuserdata │ │ └── Jason.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Jason.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ScrollBlurView.xcscheme │ └── xcschememanagement.plist ├── ScrollBlurView ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── ScrollBlurView-Info.plist ├── ScrollBlurView-Prefix.pch ├── ScrollBlurView.h ├── ScrollBlurView.m ├── UIColor+Extension.h ├── UIColor+Extension.m ├── ViewController.h ├── ViewController.m ├── anchor.png ├── en.lproj │ └── InfoPlist.strings └── main.m ├── ScrollBlurViewTests ├── ScrollBlurViewTests-Info.plist ├── ScrollBlurViewTests.m └── en.lproj │ └── InfoPlist.strings ├── demo.gif ├── effect1.png ├── effect2.png └── effect3.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/README.md -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/project.xcworkspace/xcshareddata/ScrollBlurView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/project.xcworkspace/xcshareddata/ScrollBlurView.xccheckout -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/project.xcworkspace/xcuserdata/Jason.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/project.xcworkspace/xcuserdata/Jason.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcschemes/ScrollBlurView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcschemes/ScrollBlurView.xcscheme -------------------------------------------------------------------------------- /ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView.xcodeproj/xcuserdata/Jason.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScrollBlurView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/AppDelegate.h -------------------------------------------------------------------------------- /ScrollBlurView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/AppDelegate.m -------------------------------------------------------------------------------- /ScrollBlurView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollBlurView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ScrollBlurView/ScrollBlurView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ScrollBlurView-Info.plist -------------------------------------------------------------------------------- /ScrollBlurView/ScrollBlurView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ScrollBlurView-Prefix.pch -------------------------------------------------------------------------------- /ScrollBlurView/ScrollBlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ScrollBlurView.h -------------------------------------------------------------------------------- /ScrollBlurView/ScrollBlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ScrollBlurView.m -------------------------------------------------------------------------------- /ScrollBlurView/UIColor+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/UIColor+Extension.h -------------------------------------------------------------------------------- /ScrollBlurView/UIColor+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/UIColor+Extension.m -------------------------------------------------------------------------------- /ScrollBlurView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ViewController.h -------------------------------------------------------------------------------- /ScrollBlurView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/ViewController.m -------------------------------------------------------------------------------- /ScrollBlurView/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/anchor.png -------------------------------------------------------------------------------- /ScrollBlurView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScrollBlurView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurView/main.m -------------------------------------------------------------------------------- /ScrollBlurViewTests/ScrollBlurViewTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurViewTests/ScrollBlurViewTests-Info.plist -------------------------------------------------------------------------------- /ScrollBlurViewTests/ScrollBlurViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/ScrollBlurViewTests/ScrollBlurViewTests.m -------------------------------------------------------------------------------- /ScrollBlurViewTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/demo.gif -------------------------------------------------------------------------------- /effect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/effect1.png -------------------------------------------------------------------------------- /effect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/effect2.png -------------------------------------------------------------------------------- /effect3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonZengJ/ScrollBlurView/HEAD/effect3.png --------------------------------------------------------------------------------