├── .gitignore ├── LICENSE ├── MKTabBarItemJumping.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── MKTabBarItemJumping ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── DarkGreen.colorset │ │ └── Contents.json │ ├── LightGreen.colorset │ │ └── Contents.json │ ├── Purple.colorset │ │ └── Contents.json │ └── logo.imageset │ │ ├── Contents.json │ │ └── logo_white.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Domain │ └── CubicCurveAlgorithm.swift ├── Extensions │ └── Color.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── Shapes │ └── TabItemShape.swift └── Views │ ├── ElasticView.swift │ ├── LogoView.swift │ ├── MKTabJumpingView.swift │ ├── TabItemSelectionView.swift │ └── TabItemView.swift ├── MKTabBarItemJumpingTests ├── Info.plist └── MKTabBarItemJumpingTests.swift ├── MKTabBarItemJumpingUITests ├── Info.plist └── MKTabBarItemJumpingUITests.swift ├── README.md ├── dribbble_3.gif └── jumper.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/LICENSE -------------------------------------------------------------------------------- /MKTabBarItemJumping.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKTabBarItemJumping.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MKTabBarItemJumping.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKTabBarItemJumping.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MKTabBarItemJumping/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/AppDelegate.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/DarkGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/DarkGreen.colorset/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/LightGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/LightGreen.colorset/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/Purple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/Purple.colorset/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/Assets.xcassets/logo.imageset/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Assets.xcassets/logo.imageset/logo_white.png -------------------------------------------------------------------------------- /MKTabBarItemJumping/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MKTabBarItemJumping/Domain/CubicCurveAlgorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Domain/CubicCurveAlgorithm.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Extensions/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Extensions/Color.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Info.plist -------------------------------------------------------------------------------- /MKTabBarItemJumping/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MKTabBarItemJumping/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/SceneDelegate.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Shapes/TabItemShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Shapes/TabItemShape.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Views/ElasticView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Views/ElasticView.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Views/LogoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Views/LogoView.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Views/MKTabJumpingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Views/MKTabJumpingView.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Views/TabItemSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Views/TabItemSelectionView.swift -------------------------------------------------------------------------------- /MKTabBarItemJumping/Views/TabItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumping/Views/TabItemView.swift -------------------------------------------------------------------------------- /MKTabBarItemJumpingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumpingTests/Info.plist -------------------------------------------------------------------------------- /MKTabBarItemJumpingTests/MKTabBarItemJumpingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumpingTests/MKTabBarItemJumpingTests.swift -------------------------------------------------------------------------------- /MKTabBarItemJumpingUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumpingUITests/Info.plist -------------------------------------------------------------------------------- /MKTabBarItemJumpingUITests/MKTabBarItemJumpingUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/MKTabBarItemJumpingUITests/MKTabBarItemJumpingUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/README.md -------------------------------------------------------------------------------- /dribbble_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/dribbble_3.gif -------------------------------------------------------------------------------- /jumper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maks-Jago/MKTabBarItemJumping/HEAD/jumper.gif --------------------------------------------------------------------------------