├── .gitignore ├── CardAnimationDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── CardAnimationDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Card │ ├── CardCollectionView.h │ ├── CardCollectionView.m │ ├── CardView.h │ ├── CardView.m │ ├── OverView.h │ └── OverView.m ├── Image │ ├── cards_1@2x.png │ ├── cards_2@2x.png │ ├── cards_3@2x.png │ ├── cards_4@2x.png │ ├── overlay_like@2x.png │ └── overlay_skip@2x.png ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CardAnimationDemoTests ├── CardAnimationDemoTests.m └── Info.plist ├── README.md └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /CardAnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CardAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CardAnimationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/AppDelegate.h -------------------------------------------------------------------------------- /CardAnimationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/AppDelegate.m -------------------------------------------------------------------------------- /CardAnimationDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CardAnimationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CardAnimationDemo/Card/CardCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/CardCollectionView.h -------------------------------------------------------------------------------- /CardAnimationDemo/Card/CardCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/CardCollectionView.m -------------------------------------------------------------------------------- /CardAnimationDemo/Card/CardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/CardView.h -------------------------------------------------------------------------------- /CardAnimationDemo/Card/CardView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/CardView.m -------------------------------------------------------------------------------- /CardAnimationDemo/Card/OverView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/OverView.h -------------------------------------------------------------------------------- /CardAnimationDemo/Card/OverView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Card/OverView.m -------------------------------------------------------------------------------- /CardAnimationDemo/Image/cards_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/cards_1@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Image/cards_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/cards_2@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Image/cards_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/cards_3@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Image/cards_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/cards_4@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Image/overlay_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/overlay_like@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Image/overlay_skip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Image/overlay_skip@2x.png -------------------------------------------------------------------------------- /CardAnimationDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CardAnimationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/Info.plist -------------------------------------------------------------------------------- /CardAnimationDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/ViewController.h -------------------------------------------------------------------------------- /CardAnimationDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/ViewController.m -------------------------------------------------------------------------------- /CardAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemo/main.m -------------------------------------------------------------------------------- /CardAnimationDemoTests/CardAnimationDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemoTests/CardAnimationDemoTests.m -------------------------------------------------------------------------------- /CardAnimationDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/CardAnimationDemoTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreversgy/CardAnimationDemo/HEAD/demo.gif --------------------------------------------------------------------------------