├── .gitignore ├── HoverDome └── .DS_Store ├── HoverDome_OC ├── .DS_Store ├── HoverDome_OC.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── HoverDome_OC │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Children1ViewController.h │ ├── Children1ViewController.m │ ├── Children2ViewController.h │ ├── Children2ViewController.m │ ├── Children3ViewController.h │ ├── Children3ViewController.m │ ├── HoverPageViewController.h │ ├── HoverPageViewController.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── HoverDome_Swift ├── .DS_Store ├── HoverDome.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── HoverDome │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Children1ViewController.swift │ ├── Children2ViewController.swift │ ├── Children3ViewController.swift │ ├── HoverPageViewController.swift │ ├── Info.plist │ ├── ViewController.swift │ └── hover.gif ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /HoverDome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome/.DS_Store -------------------------------------------------------------------------------- /HoverDome_OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/.DS_Store -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/AppDelegate.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/AppDelegate.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children1ViewController.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children1ViewController.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children2ViewController.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children2ViewController.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children3ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children3ViewController.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Children3ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Children3ViewController.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/HoverPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/HoverPageViewController.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/HoverPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/HoverPageViewController.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/Info.plist -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/ViewController.h -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/ViewController.m -------------------------------------------------------------------------------- /HoverDome_OC/HoverDome_OC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_OC/HoverDome_OC/main.m -------------------------------------------------------------------------------- /HoverDome_Swift/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/.DS_Store -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/AppDelegate.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Children1ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Children1ViewController.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Children2ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Children2ViewController.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Children3ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Children3ViewController.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/HoverPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/HoverPageViewController.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/Info.plist -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/ViewController.swift -------------------------------------------------------------------------------- /HoverDome_Swift/HoverDome/hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/HoverDome_Swift/HoverDome/hover.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiaokeZ/iOS_HoverPageViewController/HEAD/README.md --------------------------------------------------------------------------------