All Projects → DarshanKunjadiya1994 → AppleMusicAnimation

DarshanKunjadiya1994 / AppleMusicAnimation

Licence: other
No description or website provided.

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to AppleMusicAnimation

Recycler Fast Scroll
Provides fast scroll and section idexer for recycler view
Stars: ✭ 445 (+1680%)
Mutual labels:  bubble
Extract.autodesk.io
A sample showing how to extract viewables from the Autodesk OSS storage to your local machine
Stars: ✭ 97 (+288%)
Mutual labels:  bubble
react-native-speech-bubble
💬 A speech bubble dialog component for React Native.
Stars: ✭ 50 (+100%)
Mutual labels:  bubble
Awesome Cryptokitties Bubble
Awesome CryptoKitties Bubble (Anno 2017) - Yes, Cute Little Cartoon Cats on the Blockchain! - Digital collectibles secured on a distributed public database w/ crypto hashes. Learn by Example from the Real World - Buy! Sell! Hodl! Sire!
Stars: ✭ 504 (+1916%)
Mutual labels:  bubble
Magnetic
SpriteKit Floating Bubble Picker (inspired by Apple Music) 🧲
Stars: ✭ 1,252 (+4908%)
Mutual labels:  bubble
React Native Listener
A utility component to allow easy access to browser native events
Stars: ✭ 136 (+444%)
Mutual labels:  bubble
Sifloatingcollection swift
iOS Swift framework for creating user interface like apple music genre selection bubbles
Stars: ✭ 424 (+1596%)
Mutual labels:  bubble
bubble-layout
An Android ViewGroup that displays avatar bubbles... similar to the chat bubbles on Facebook Messenger.
Stars: ✭ 46 (+84%)
Mutual labels:  bubble
Bubble Picker
An easy-to-use animation which can be used for content picking for Android
Stars: ✭ 1,316 (+5164%)
Mutual labels:  bubble
Beerprogressview
A library that lets you create a beer styled progress view with bubbles and all! (hic) 🍺
Stars: ✭ 230 (+820%)
Mutual labels:  bubble
Bubbletab
Put some bubble in your tabs and give your apps a supa fresh style !
Stars: ✭ 537 (+2048%)
Mutual labels:  bubble
React Native Bubble Select
An easy-to-use customizable bubble animation picker, similar to the Apple Music genre selection
Stars: ✭ 78 (+212%)
Mutual labels:  bubble
Mmtexturechat
AsyncDisplayKit(Texture) Smooth Scroll Chat Simulation for Whatsapp and iMessage
Stars: ✭ 149 (+496%)
Mutual labels:  bubble
Happybubble
💭BubbleLayout随意变化的气泡布局、消息对话框,可定制颜色,背景、弧度、尖角弧度、边框等等。BubbleDialog气泡弹窗根据点击View的位置定位它的弹窗位置,BubbleDialog可定制方向等!(BubbleLayout changes freely,BubbleDialog click on the location of View positioning its location,BubbleDialog can be customized directions.)
Stars: ✭ 487 (+1848%)
Mutual labels:  bubble
bubbly.nvim
Bubbly statusline for neovim
Stars: ✭ 185 (+640%)
Mutual labels:  bubble
Bubblepictures
Bubble Pictures for iOS done in Swift
Stars: ✭ 434 (+1636%)
Mutual labels:  bubble
Leader Line
Draw a leader line in your web page.
Stars: ✭ 1,872 (+7388%)
Mutual labels:  bubble
android-tutorial-bubbles
A little ui framework that displays a styled tutorial bubble, which positions and scales itself based on a given anchor view.
Stars: ✭ 20 (-20%)
Mutual labels:  bubble
iMessageBubble
A sub class of UITableViewCell to create exactly the same kind of bubbles that iMessage uses in iOS 8. Very easy to use and highly customizable.
Stars: ✭ 34 (+36%)
Mutual labels:  bubble
Bubbleactions
An open source implementation of the long press actions in the Pinterest app.
Stars: ✭ 217 (+768%)
Mutual labels:  bubble

AppleMusicAnimation

AppleMusicAnimation is similar to Apple Music’s genre selection screen. This project provides a component which you can use to create a pool of subviews. Each of these subviews are animated with physics when the user swipe across the screen. You can easily start using this project by adding SKShapeNode as menu item.

Usage

  1. Create a SKView object and add it to your view, then create AnimatedMenuScene and present in SKView.

  2. To add menu item set menuNodes array property (should be an array of NSStrings)

  3. If need multiple selections set allowMultipleSelection = YES (Default is NO)

  4. Set animatedSceneDelegate if you want to get notify when user selects menuItem (node)

  5. For full demo code download code :).

_View = [[SKView alloc] initWithFrame:self.view.bounds];
[self.view insertSubview:_skView atIndex:0];
_animatedMenuScene = [[AnimatedMenuScene alloc] initWithSize:self.skView.bounds.size];  
_animatedMenuScene.animatedSceneDelegate = self;// If you want to get notify when an item get selected       
_animatedMenuScene.menuNodes = _typeArray;
_animatedMenuScene.backgroundColor = [UIColor blueColor];
[_skView presentScene:_animatedMenuScene];

Credit

This project has reference code from AnimatedMenuPool. You can find that here https://github.com/CoderXpert/AnimatedMenuPool

DSMultilineLabelNode is used to wrap text in two lines. You can find that here https://github.com/downrightsimple/DSMultilineLabelNode

Example

See Example

License

AppleMusicAnimation is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].