Giter VIP home page Giter VIP logo

pujiaxin33 / jxcategoryview Goto Github PK

View Code? Open in Web Editor NEW
6.0K 91.0 1.2K 31.18 MB

A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)

License: MIT License

Objective-C 99.47% Ruby 0.20% Swift 0.32%
category pageview segmentedcontrol pagingview categoryview scrollview collectionview indicator objective-c ios

jxcategoryview's Introduction

platform languages cocoapods support

A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ 音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流 APP 分类切换滚动视图)

与其他的同类三方库对比的优点:

  • 使用协议封装指示器逻辑,可以随心所欲地自定义指示器效果;
  • 提供更加全面丰富、高度自定义的效果;
  • 使用子类化管理 cell 样式,逻辑更清晰,扩展更简单;
  • 高度封装列表容器,使用便捷,完美支持列表的生命周期调用;

Swift版本

如果你在找 Swift 版本,请点击查看 JXSegmentedView

效果预览

指示器效果预览

说明 Gif
LineView
LineView延长
LineView延长+偏移
LineView🌈彩虹风格
DotLineView点线效果
BallView QQ黏性红点
TriangleView 三角形底部
TriangleView 三角形顶部
BackgroundView椭圆形
BackgroundView椭圆形+阴影
BackgroundView长方形
BackgroundView遮罩有背景
BackgroundView遮罩无背景
BackgroundView渐变色
ImageView底部(小船)
ImageView背景(最佳男歌手)
ImageView滚动效果(足球)
混合使用

以下均支持上下位置切换: JXCategoryIndicatorLineViewJXCategoryIndicatorImageViewJXCategoryIndicatorBallViewJXCategoryIndicatorTriangleView

Cell样式效果预览

说明 Gif
颜色渐变
大小缩放
大小缩放+底部锚点
大小缩放+顶部锚点
大小缩放+字体粗细
大小缩放+点击动画
大小缩放+cell宽度缩放
TitleImage_Top
TitleImage_Left
TitleImage_Bottom
TitleImage_Right
cell图文混用
Image
数字
红点
多行文本
多行富文本
Cell背景色渐变
分割线

特殊效果预览

说明 Gif
数据源过少
averageCellSpacingEnabled默认为YES
数据源过少
averageCellSpacingEnabled为NO
SegmentedControl
参考SegmentedControlViewController
导航栏使用
参考NaviSegmentedControlViewController
嵌套使用
参考NestViewController
个人主页(上下左右滚动、header悬浮)
参考PagingViewController
更多样式请点击查看JXPagingView库
垂直列表滚动
参考VerticalListViewController
高仿腾讯视频
支持UITableView,参考VerticalListTableViewController
(背景色异常是录屏软件bug)
垂直缩放(仿网易圈圈、脉脉首页)
参考ScrollZoomViewController
数据源刷新&列表数据加载
参考LoadDataListContainerViewController
上下滚动隐藏导航栏
京东首页-滚动渐变变小

自定义效果预览

收录来自其他使用者的自定义示例,这些自定义类只在 Demo 项目里面,Pod 库并没有这些文件。所以,如果你需要使用这些自定义效果,请通过文件导入的方式。

目的:

  • 参考学习如何自定义;
  • 直接修改自定义示例类以快速实现自己的需求。

欢迎提 PullRequest 进行收录你的自定义效果。

说明 Gif
Spring动画指示器
富文本数量cell
左右对齐指示器
秒杀时间线cell
京东商品排序cell
title背景块cell

要求

  • iOS 9.0+
  • Xcode 9+
  • Objective-C

安装

手动

Clone 代码,把 Sources 文件夹拖入项目,#import "JXCategoryView.h" 就可以使用了。

CocoaPods

target '<Your Target Name>' do
    pod 'JXCategoryView'
end

先执行 pod repo update,再执行 pod install

结构图

使用

JXCategoryTitleView 使用示例

  1. 初始化 JXCategoryTitleView
self.categoryView = [[JXCategoryTitleView alloc] initWithFrame:CGRectMake(0, 0, WindowsSize.width, 50)];
self.categoryView.delegate = self;
[self.view addSubview:self.categoryView];
  1. 配置 JXCategoryTitleView 的属性:
self.categoryView.titles = @[@"螃蟹", @"麻辣小龙虾", @"苹果"...];
self.categoryView.titleColorGradientEnabled = YES;
  1. 添加指示器:
JXCategoryIndicatorLineView *lineView = [[JXCategoryIndicatorLineView alloc] init];
lineView.indicatorColor = [UIColor redColor];
lineView.indicatorWidth = JXCategoryViewAutomaticDimension;
self.categoryView.indicators = @[lineView];
  1. 实现 JXCategoryViewDelegate 代理(可选)
// 点击选中或者滚动选中都会调用该方法。适用于只关心选中事件,不关心具体是点击还是滚动选中的。
- (void)categoryView:(JXCategoryBaseView *)categoryView didSelectedItemAtIndex:(NSInteger)index;

// 点击选中的情况才会调用该方法
- (void)categoryView:(JXCategoryBaseView *)categoryView didClickSelectedItemAtIndex:(NSInteger)index;

// 滚动选中的情况才会调用该方法
- (void)categoryView:(JXCategoryBaseView *)categoryView didScrollSelectedItemAtIndex:(NSInteger)index;

// 正在滚动中的回调
- (void)categoryView:(JXCategoryBaseView *)categoryView scrollingFromLeftIndex:(NSInteger)leftIndex toRightIndex:(NSInteger)rightIndex ratio:(CGFloat)ratio;

列表容器使用示例

JXCategoryListContainerView 封装类使用示例

JXCategoryListContainerView 是对列表视图高度封装的类,具有以下优点:

  • 相对于直接使用 UIScrollView 自定义,封装度高、代码集中、使用简单;
  • 列表懒加载:当显示某个列表的时候,才进行列表初始化。而不是一次性加载全部列表,性能更优;
  • 支持列表的 willAppeardidAppearwillDisappeardidDisappear 生命周期方法调用;
  1. 初始化 JXCategoryListContainerView 并关联到 categoryView
self.listContainerView = [[JXCategoryListContainerView alloc] initWithType:JXCategoryListContainerType_ScrollView delegate:self];
[self.view addSubview:self.listContainerView];
// 关联到 categoryView
self.categoryView.listContainer = self.listContainerView;
  1. 实现 JXCategoryListContainerViewDelegate 代理方法:
// 返回列表的数量
- (NSInteger)numberOfListsInlistContainerView:(JXCategoryListContainerView *)listContainerView {
    return self.titles.count;
}
// 根据下标 index 返回对应遵守并实现 `JXCategoryListContentViewDelegate` 协议的列表实例
- (id<JXCategoryListContentViewDelegate>)listContainerView:(JXCategoryListContainerView *)listContainerView initListForIndex:(NSInteger)index {
    return [[ListViewController alloc] init];
}
  1. 列表实现 JXCategoryListContentViewDelegate 代理方法 不管列表是 UIView 还是 UIViewController 都可以,提高使用灵活性,更便于现有的业务接入。
// 返回列表视图
// 如果列表是 VC,就返回 VC.view
// 如果列表是 View,就返回 View 自己
- (UIView *)listView {
    return self.view;
}

具体点击 LoadDataListContainerViewController 查看源代码了解

直接使用 UIScrollView 自定义

因为代码量较多且分散,所有不推荐使用该方法。要正确使用需要注意的地方比较多,尤其对于刚接触 iOS 的同学来说不太友好。

不直接贴代码了,具体点击 LoadDataListCustomViewController 查看源代码了解。

常见问题和答案

❗️❗️❗️这里面包含了许多常见问题和答案,使用之前请务必浏览此文档,或者遇到问题先看此文档❗️❗️❗️

常见问题和答案总文档

指示器样式自定义

  • 需要继承 JXCategoryIndicatorProtocol 协议,点击参看 JXCategoryIndicatorProtocol
  • 提供了继承 JXCategoryIndicatorProtocol 协议的基类 JXCategoryIndicatorComponentView,里面提供了许多基础属性。点击参看 JXCategoryIndicatorComponentView
  • 自定义指示器,请参考已实现的指示器视图,多尝试、多思考,再有问题请提 Issue 或加入反馈 QQ 群。

Cell 自定义

  • 任何子类化需求,view、cell、cellModel 三个都要子类化,即使某个子类 cell 什么事情都不做。用于维护继承链,以免以后子类化都不知道要继承谁了;
  • 如果你想完全自定义 cell 里面的内容,那就继承 JXCategoryIndicatorViewJXCategoryIndicatorCell、JXCategoryIndicatorCellModel,就像JXCategoryTitleViewJXCategoryTitleCell、JXCategoryTitleCellModel那样去做;
  • 如果你只是在父类进行一些微调,那就继承目标 view、cell、cellModel,对 cell 原有控件微调、或者加入新的控件皆可。就像 JXCategoryTitleImageView 系列、JXCategoryTitleAttributeView 系列那样去做;
  • Cell 自定义,请参考已实现的 cell 样式,多尝试、多思考,再有问题请提 Issue 或加入反馈 QQ 群

常用属性说明

常用属性说明文档地址

更新记录

  • 2018.8.21 发布1.0.0版本,更新内容:使用POP(面向协议编程)重构指示器视图;迁移指南
  • 2018.8.22 发布1.0.1版本,更新内容:删除zoomEnabled,新增titleLabelZoomEnabled、imageZoomEnabled;
  • 2018.8.23 发布1.0.2版本,更新内容:添加cellWidthZoomEnabled实现腾讯视频效果;
  • 2018.8.24 发布1.0.3版本,更新内容:添加垂直列表滚动效果、指示器添加verticalMargin属性、JXCategoryViewDelegate代理方法优化;
  • 2018.9.4 发布1.0.4版本,更新内容:修复bug、添加cell图文混用示例;
  • 2018.12.19 发布1.1.7版本,更新内容:添加JXCategoryListContainerView,高度封装列表逻辑,支持懒加载列表,提升初始化性能;
  • 2019.1.24 发布1.2.2版本,更新内容:非兼容更新接口- (BOOL)selectCellAtIndex:(NSInteger)index selectedType:(JXCategoryCellSelectedType)selectedType,自定义有用到该接口的请及时更新。
  • 2019.6.21 发布1.3.13版本,更新内容:将JXCategoryListCollectionContainerView.dataSource移动到m实现文件,添加- (instancetype)initWithDataSource:(id<JXCategoryListCollectionContainerViewDataSource>)dataSource初始化方法。
  • 2019.7.20 发布1.3.16版本,删除代理方法- (void)categoryView:(JXCategoryBaseView *)categoryView didClickedItemContentScrollViewTransitionToIndex:(NSInteger)index;,请使用contentScrollViewClickTransitionAnimationEnabled属性。JXCategoryTitleVerticalZoomView进行了重构,内容左边距只需要使用contentEdgeLeft属性即可。
  • 2019.9.11 发布1.4.0版本,删除一波被标记为弃用的属性和方法;完善列表的生命周期方法的调用;JXCategoryListCollectionContainerView类新增和必须要调用- (void)scrollingFromLeftIndex:(NSInteger)leftIndex toRightIndex:(NSInteger)rightIndex ratio:(CGFloat)ratio selectedIndex:(NSInteger)selectedIndex- (void)didClickSelectedItemAtIndex:(NSInteger)index两个方法。
  • 2019.9.19 发布1.5.0版本,重构列表容器,具体修改请参考1.5.0版本迁移指南

补充

如果刚开始使用JXCategoryView,当开发过程中需要支持某种特性时,请务必先搜索使用文档或者源代码。确认是否已经实现支持了想要的特性。请别不要文档和源代码都没有看,就直接提问,这对于大家都是一种时间浪费。如果没有支持想要的特性,欢迎提Issue讨论,或者自己实现提一个PullRequest。

该仓库保持随时更新,对于主流新的分类选择效果会第一时间支持。使用过程中,有任何建议或问题,可以通过以下方式联系我:
邮箱:[email protected]
QQ群: 112440473

喜欢就star❤️一下吧

License

JXCategoryView is released under the MIT license.

jxcategoryview's People

Contributors

andy0570 avatar hstdt avatar maltsugar avatar monkey-tw avatar pujiaxin33 avatar rogue24 avatar sclcoder avatar skytoup avatar yanpengimp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jxcategoryview's Issues

滑动返回的一些建议

问题:如果控制器处于selectedIndex非0的情况,手势返回会失效,优先处理了您仓库的滑动事件,要想手势返回,需要一直滑动到selectedIndex =0才能生效。
需求:不论selectedIndex等于多少,手势返回建议都能生效。
建议:继承UIScrollView

  • (BOOL)gestureRecognizer:(UIGestureRecognizer )gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer)otherGestureRecognizer {
    if ([self panBack:gestureRecognizer]) {
    return YES;
    }
    return NO;
    }

JXCategoryIndicatorView frame 位置不正确

ladpdgq9qswalmtmtm0e2g_1242_180 jpg_620x10000q90g
Uploading lADPDgQ9qSWalMTMtM0E2g_1242_180.jpg_620x10000q90g.jpg…
2018-10-11 10 53 33

我在JXCategoryIndicatorView.m的- (void)refreshState{}函数最后面添加了
JXCategoryIndicatorCell *selectedCell = (JXCategoryIndicatorCell *)[self.collectionView cellForItemAtIndexPath:[NSIndexPath indexPathForItem:self.selectedIndex inSection:0]];
//是否点击了相对于选中cell左边的cell
JXCategoryCellClickedPosition clickedPosition = JXCategoryCellClickedPosition_Left;
CGRect clickedCellFrame = [self getTargetCellFrame:self.selectedIndex];
for (UIView *component in self.indicators)
{
[component jx_selectedCell:selectedCell.frame clickedRelativePosition:clickedPosition];
if ([component isKindOfClass:[JXCategoryIndicatorBackgroundView class]]) {
CGRect maskFrame = component.frame;
maskFrame.origin.x = maskFrame.origin.x - clickedCellFrame.origin.x;
selectedCellModel.backgroundViewMaskFrame = maskFrame;
}
}

并且修改了- (BOOL)selectCellAtIndex:(NSInteger)index {}函数
[selectedCell reloadData:selectedCellModel];写在了循环刷新Frame的前面
如果在刷新前面遍历写Frame,当cell的宽度太长时,会出现偏差。所以我写在了后面。

修改原因:JXCategoryIndicatorView位置不正确
可能是第一个选项显示cell宽度太长,导致我选中第二个的时候回自动滚动第二个到可见位置,然而JXCategoryIndicatorView获取的是滚动之前的cell的位置,导致JXCategoryIndicatorView位置显示不正确。

我暂时解决了问题,如果您进行了修改,我会重新Pod进工程,谢谢。

警告

Unbalanced calls to begin/end appearance transitions for <LoadDataListBaseViewController: 0x7fca2042b8b0>

指示器渐变色

您好, 能不能添加一个指示器渐变色的功能,最近产品看上了书旗小说书城页面顶部导航栏的那种切换效果,我看了下您的源码,能力有限没实现效果

使用UICollectionView重型控件实现功能是否合适?

CPU 资源消耗原因和解决方案
对象创建

对象的创建会分配内存、调整属性、甚至还有读取文件等操作,比较消耗 CPU 资源。尽量用轻量的对象代替重量的对象,可以对性能有所优化。比如 CALayer 比 UIView 要轻量许多,那么不需要响应触摸事件的控件,用 CALayer 显示会更加合适。如果对象不涉及 UI 操作,则尽量放到后台线程去创建,但可惜的是包含有 CALayer 的控件,都只能在主线程创建和操作。通过 Storyboard 创建视图对象时,其资源消耗会比直接通过代码创建对象要大非常多,在性能敏感的界面里,Storyboard 并不是一个好的技术选择。

以上内容来自https://blog.ibireme.com/2015/11/12/smooth_user_interfaces_for_ios/

关于视图全部加载问题

使用categoryview时,初始化了controller,当categoryview所在的父控制器加载完毕后,子控制器也被加载完毕,并且viewDidAppear也调用了。有没有方法,进入时只加载一个,滑动第二个再加载第二个?

是否考虑下生命周期的问题

我发现 创建页面的时候,是一次性全部创建,所有的控制器都先执行了ViewDidLoad,和ViewWillAppear的方法

如果一次性创建多个控制器,会不会对性能有所影响?

已发现bug.

在有tabarViewController的情况下, 同时点击JXCategoryView的标题和tabar的其它item, 会导致scrollview滚动位置错误.

是否可以考虑增加一个获取cellWidth和scrollView.contentOffset.x的delegate

目前我使用下面这种方式获取的cellWidth,感觉可以增加一个获取cellWidthcontentOffset的delegate。(我的应用场景是用CategoryView做表头,通过cellWidth绘制表格,然后和通过KVO获取的scrollView.contentOffset.x做表格和表头同步滚动的效果😓)。

JXCategoryBaseCellModel *model = self.categoryTitleView.dataSource[0];
CGFloat cellWidth = model.cellWidth;

代理方法不执行

self.categoryView = [[JXCategoryTitleView alloc] initWithFrame:CGRectMake(0, 0, WindowsSize.width, categoryViewHeight)];
self.categoryView.delegate = self;
self.categoryView.contentScrollView = self.scrollView;
//------指示器属性配置------//
//lineView
JXCategoryIndicatorLineView *lineView = [[JXCategoryIndicatorLineView alloc] init];
//triangleView
JXCategoryIndicatorTriangleView *triangleView = [[JXCategoryIndicatorTriangleView alloc] init];
lineView.indicatorLineWidth = 20;
//ballView
JXCategoryIndicatorBallView *ballView = [[JXCategoryIndicatorBallView alloc] init];
//backgroundView
JXCategoryIndicatorBackgroundView *backgroundView = [[JXCategoryIndicatorBackgroundView alloc] init];

titleCategoryView.indicators = @[lineView, triangleView, ballView, backgroundView];

[self.view addSubview:self.categoryView];

直接用JXCategoryTitleView为啥代理方法- (void)categoryView:(JXCategoryBaseView *)categoryView didSelectedItemAtIndex:(NSInteger)index 不执行

和UIPageViewController一起结合使用遇到的问题

首先感谢提供了这么好的一个库哈,很方便!

然后我们集成的时候,是把这个和UIPageViewController一起结合使用的,最开始我们在UIPageViewController里面获取到UIScrollView,命名为theScrollView,然后想通过

self.categoryView.contentScrollView = self.theScrollView;

实现两者结合,发现滑动的时候很怪,经常滑动了一下,而标题栏那里就滑动了2个,而且不太好追踪问题所在。

后来我们就想分开实现,首先实现当滑动之后,标题栏移动到相应的栏目上面,这个没问题,通过 [self.categoryView selectCellAtIndex:index];这个方法解决了,如下代码:

  • (void)viewPager:(ViewPagerController *)viewPager didChangeTabToIndex:(NSUInteger)index {

    [self.categoryView selectCellAtIndex:index];

}

然后我们想移动的过程中,有跟随动画,然后我们研究了源代码,然后结合你们源代码里对UIScrollview那样

[self.theScrollView addObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew context:nil];

#pragma mark - KVO

  • (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
    {

    if ([keyPath isEqualToString:@"contentOffset"] && (self.theScrollView.isTracking || self.theScrollView.isDecelerating)) {
    //用户滚动引起的contentOffset变化,才处理。
    CGPoint contentOffset = [change[NSKeyValueChangeNewKey] CGPointValue];

      [self.categoryView contentOffsetOfContentScrollViewDidChanged:contentOffset];
    

    }
    }

主要是调用这个方法 [self.categoryView contentOffsetOfContentScrollViewDidChanged:contentOffset];

然后就怎么都没有反应。所以想请教一下这种和UIPageViewController结合使用的时候,想实现有跟随动画的话,有什么好的解决方法吗?

使用titleLabelZoomScale 属性时cellWidth计算不准确

  • (CGFloat)preferredCellWidthWithIndex:(NSInteger)index {
    if (self.cellWidth == JXCategoryViewAutomaticDimension) {
    return ceilf([self.titles[index] boundingRectWithSize:CGSizeMake(MAXFLOAT, self.bounds.size.height) options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading attributes:@{NSFontAttributeName : self.titleFont} context:nil].size.width );
    }else {
    return self.cellWidth;
    }
    }

建议修改如下 方法 width * self.titleLabelZoomScale

  • (CGFloat)preferredCellWidthWithIndex:(NSInteger)index {
    if (self.cellWidth == JXCategoryViewAutomaticDimension) {
    return ceilf([self.titles[index] boundingRectWithSize:CGSizeMake(MAXFLOAT, self.bounds.size.height) options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading attributes:@{NSFontAttributeName : self.titleFont} context:nil].size.width * self.titleLabelZoomScale);
    }else {
    return self.cellWidth;
    }
    }

会多次回调didSelectedItemAtIndex这个方法

如,我JXCategoryTitleView添加了三个标题,也就是三个按钮

第一个和第三个不会多次回调,但是第二个按钮,只要轻轻的拖拽一下(不是直接拖动到其他按钮),就会执行四次代理,

关于切换动画

因为公司设计师也是参照闲鱼出的设计图,然后我发现闲鱼点击bar切换的时候scrollview没有明显的滚动动画,体验会好一点点

嵌套使用情况下的BUG

嵌套使用情况下,由子SegmentView切换导致父SegmentView切换时,快速左右滑动,响应的为父SegmentView的切换,该处逻辑稍有问题。
PS:功能挺多,辛苦了

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.