├── .gitignore ├── LICENSE ├── README.md ├── Resource ├── App Icon.png ├── Icon-40.png ├── Icon-40@2x.png ├── Icon-60@2x.png ├── Icon-60@3x.png ├── Icon-76.png ├── Icon-76@2x.png ├── Icon-Small.png ├── Icon-Small@2x.png └── Icon-Small@3x.png ├── YXTMotionView.podspec ├── YXTMotionView ├── UIScrollView+YXTScrollIndicator.h ├── UIScrollView+YXTScrollIndicator.m ├── YXTMotionView.h ├── YXTMotionView.m ├── YXTZoomScrollView.h └── YXTZoomScrollView.m ├── YXTMotionViewDemo ├── YXTMotionViewDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── YXTMotionViewDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x-1.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-60@2x-1.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ └── Icon-Small@3x.png │ │ └── Night Sky.imageset │ │ │ ├── Contents.json │ │ │ └── Night Sky.jpg │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── YXTMotionViewDemoTests │ ├── Info.plist │ └── YXTMotionViewDemoTests.m └── screenshot └── YXTMotionView.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/README.md -------------------------------------------------------------------------------- /Resource/App Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/App Icon.png -------------------------------------------------------------------------------- /Resource/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-40.png -------------------------------------------------------------------------------- /Resource/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-40@2x.png -------------------------------------------------------------------------------- /Resource/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-60@2x.png -------------------------------------------------------------------------------- /Resource/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-60@3x.png -------------------------------------------------------------------------------- /Resource/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-76.png -------------------------------------------------------------------------------- /Resource/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-76@2x.png -------------------------------------------------------------------------------- /Resource/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-Small.png -------------------------------------------------------------------------------- /Resource/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-Small@2x.png -------------------------------------------------------------------------------- /Resource/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/Resource/Icon-Small@3x.png -------------------------------------------------------------------------------- /YXTMotionView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView.podspec -------------------------------------------------------------------------------- /YXTMotionView/UIScrollView+YXTScrollIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/UIScrollView+YXTScrollIndicator.h -------------------------------------------------------------------------------- /YXTMotionView/UIScrollView+YXTScrollIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/UIScrollView+YXTScrollIndicator.m -------------------------------------------------------------------------------- /YXTMotionView/YXTMotionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/YXTMotionView.h -------------------------------------------------------------------------------- /YXTMotionView/YXTMotionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/YXTMotionView.m -------------------------------------------------------------------------------- /YXTMotionView/YXTZoomScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/YXTZoomScrollView.h -------------------------------------------------------------------------------- /YXTMotionView/YXTZoomScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionView/YXTZoomScrollView.m -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/Night Sky.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/Night Sky.imageset/Contents.json -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/Night Sky.imageset/Night Sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Images.xcassets/Night Sky.imageset/Night Sky.jpg -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/Info.plist -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/ViewController.h -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/ViewController.m -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemo/main.m -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemoTests/Info.plist -------------------------------------------------------------------------------- /YXTMotionViewDemo/YXTMotionViewDemoTests/YXTMotionViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/YXTMotionViewDemo/YXTMotionViewDemoTests/YXTMotionViewDemoTests.m -------------------------------------------------------------------------------- /screenshot/YXTMotionView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanton/YXTMotionView/HEAD/screenshot/YXTMotionView.gif --------------------------------------------------------------------------------