Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nviconslib_silhouette | 948 | 7 years ago | 4 | HTML | ||||||
vector PSD and SVG popular website Icon (Especially China ) | ||||||||||
Popmenu | 904 | 51 | 7 years ago | 5 | May 07, 2015 | 12 | mit | Objective-C | ||
PopMenu is pop animation menu inspired by Sina weibo / NetEase app. | ||||||||||
Yibo | 187 | 10 years ago | 5 | apache-2.0 | Java | |||||
A simple and fast weibo app,support Sina, Tencent, Twiiter, Netease,Soho... | ||||||||||
Upimg Mirror | 9 | 5 years ago | mit | JavaScript | ||||||
Backup upimg from NPM | ||||||||||
Netease Music Wrapper | 1 | 9 years ago | Swift | |||||||
A simple WebKit wrapper around Netease Music. | ||||||||||
Oauthframework | 1 | 9 years ago | gpl-3.0 | PHP | ||||||
oauthFramework is an OAuth 2.0 Client Framework written by PHP. |
PopMenu is pop animation menu inspired by Sina weibo / NetEase app.
With CocoaPods, add this line to your Podfile
.
pod 'PopMenu'
and run pod install
, then you're all done!
/PopMenu
folder in your project.NSMutableArray *items = [[NSMutableArray alloc] initWithCapacity:3];
MenuItem *menuItem = [[MenuItem alloc] initWithTitle:@"Flickr" iconName:@"post_type_bubble_flickr" glowColor:[UIColor grayColor] index:0];
[items addObject:menuItem];
menuItem = [[MenuItem alloc] initWithTitle:@"Googleplus" iconName:@"post_type_bubble_googleplus" glowColor:[UIColor colorWithRed:0.000 green:0.840 blue:0.000 alpha:1.000] index:0];
[items addObject:menuItem];
menuItem = [[MenuItem alloc] initWithTitle:@"Instagram" iconName:@"post_type_bubble_instagram" glowColor:[UIColor colorWithRed:0.687 green:0.000 blue:0.000 alpha:1.000] index:0];
[items addObject:menuItem];
menuItem = [[MenuItem alloc] initWithTitle:@"Twitter" iconName:@"post_type_bubble_twitter" glowColor:[UIColor colorWithRed:0.687 green:0.000 blue:0.000 alpha:1.000] index:0];
[items addObject:menuItem];
menuItem = [[MenuItem alloc] initWithTitle:@"Youtube" iconName:@"post_type_bubble_youtube" glowColor:[UIColor colorWithRed:0.687 green:0.000 blue:0.000 alpha:1.000] index:0];
[items addObject:menuItem];
menuItem = [[MenuItem alloc] initWithTitle:@"Facebook" iconName:@"post_type_bubble_facebook" glowColor:[UIColor colorWithRed:0.687 green:0.000 blue:0.000 alpha:1.000] index:0];
[items addObject:menuItem];
PopMenu *popMenu = [[PopMenu alloc] initWithFrame:self.view.bounds items:items];
popMenu.menuAnimationType = kPopMenuAnimationTypeNetEase; // kPopMenuAnimationTypeSina
popMenu.perRowItemCount = 3; // or 2
[popMenu showMenuAtView:self.view];
PopMenu is available under the MIT license, see the LICENSE file for more information.