├── PhotoAnimationScrollDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── mkjing.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── MKJ.xcuserdatad │ └── xcschemes │ │ ├── PhotoAnimationScrollDemo.xcscheme │ │ └── xcschememanagement.plist │ └── mkjing.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── PhotoAnimationScrollDemo.xcscheme │ └── xcschememanagement.plist ├── PhotoAnimationScrollDemo.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── MKJ.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── mkjing.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── PhotoAnimationScrollDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomViews │ ├── MKJCircleLayout.h │ ├── MKJCircleLayout.m │ ├── MKJCollectionViewCell.h │ ├── MKJCollectionViewCell.m │ ├── MKJCollectionViewCell.xib │ ├── MKJCollectionViewFlowLayout.h │ ├── MKJCollectionViewFlowLayout.m │ ├── MKJConstant.h │ ├── MKJConstant.m │ ├── MKJItemModel.h │ ├── MKJItemModel.m │ ├── MKJMainPopoutView.h │ ├── MKJMainPopoutView.m │ ├── MKJOverLayLayout.h │ └── MKJOverLayLayout.m ├── Info.plist ├── ViewController.h ├── ViewController.m ├── images │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── close@2x.png │ └── close@3x.png ├── main.m └── tools │ ├── NSArray+Extension.h │ ├── NSArray+Extension.m │ ├── UIView+Extension.h │ └── UIView+Extension.m ├── PhotoAnimationScrollDemoTests ├── Info.plist └── PhotoAnimationScrollDemoTests.m ├── PhotoAnimationScrollDemoUITests ├── Info.plist └── PhotoAnimationScrollDemoUITests.m ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── MKJ.xcuserdatad │ │ └── xcschemes │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-PhotoAnimationScrollDemo.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── mkjing.xcuserdatad │ │ └── xcschemes │ │ ├── Masonry.xcscheme │ │ ├── Pods-PhotoAnimationScrollDemo.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m └── Target Support Files │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-PhotoAnimationScrollDemo │ ├── Pods-PhotoAnimationScrollDemo-acknowledgements.markdown │ ├── Pods-PhotoAnimationScrollDemo-acknowledgements.plist │ ├── Pods-PhotoAnimationScrollDemo-dummy.m │ ├── Pods-PhotoAnimationScrollDemo-frameworks.sh │ ├── Pods-PhotoAnimationScrollDemo-resources.sh │ ├── Pods-PhotoAnimationScrollDemo.debug.xcconfig │ └── Pods-PhotoAnimationScrollDemo.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md └── podfile /PhotoAnimationScrollDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/project.xcworkspace/xcuserdata/mkjing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/project.xcworkspace/xcuserdata/mkjing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/PhotoAnimationScrollDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/PhotoAnimationScrollDemo.xcscheme -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/PhotoAnimationScrollDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/PhotoAnimationScrollDemo.xcscheme -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcworkspace/xcuserdata/MKJ.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo.xcworkspace/xcuserdata/mkjing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/AppDelegate.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/AppDelegate.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCircleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCircleLayout.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCircleLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCircleLayout.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewCell.xib -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJCollectionViewFlowLayout.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJConstant.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJConstant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJConstant.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJItemModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJItemModel.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJItemModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJItemModel.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJMainPopoutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJMainPopoutView.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJMainPopoutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJMainPopoutView.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJOverLayLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJOverLayLayout.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/CustomViews/MKJOverLayLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/CustomViews/MKJOverLayLayout.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/Info.plist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/ViewController.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/ViewController.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/0.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/1.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/10.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/2.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/3.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/4.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/5.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/6.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/7.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/8.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/9.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/close@2x.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/images/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/images/close@3x.png -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/main.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/tools/NSArray+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/tools/NSArray+Extension.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/tools/NSArray+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/tools/NSArray+Extension.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/tools/UIView+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/tools/UIView+Extension.h -------------------------------------------------------------------------------- /PhotoAnimationScrollDemo/tools/UIView+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemo/tools/UIView+Extension.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemoTests/Info.plist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemoTests/PhotoAnimationScrollDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemoTests/PhotoAnimationScrollDemoTests.m -------------------------------------------------------------------------------- /PhotoAnimationScrollDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemoUITests/Info.plist -------------------------------------------------------------------------------- /PhotoAnimationScrollDemoUITests/PhotoAnimationScrollDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/PhotoAnimationScrollDemoUITests/PhotoAnimationScrollDemoUITests.m -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Pods-PhotoAnimationScrollDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/Pods-PhotoAnimationScrollDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/MKJ.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Pods-PhotoAnimationScrollDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/Pods-PhotoAnimationScrollDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Pods.xcodeproj/xcuserdata/mkjing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/Pods-PhotoAnimationScrollDemo/Pods-PhotoAnimationScrollDemo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cardPhotoShwo 2 | iOS自定义UICollectionViewlayout仿英雄联盟选择皮肤立体效果Demo 3 | -------------------------------------------------------------------------------- /podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeftMKJ/cardPhotoShwo/HEAD/podfile --------------------------------------------------------------------------------