codecamp

Ant Design React 社区精选组件

antd 是 Ant Design 设计规范的 React 实现,所以我们倾向于只提供符合该规范、且带有视觉展现的 UI 组件,也尽量不重复造轮子。我们推荐使用以下社区已有的优秀实现,与 antd 形成互补:

类型推荐组件
可视化图表AntV 数据可视化解决方案 [[EMOJI:%F0%9F%94%A5]] AntV 图表库 BizCharts recharts viser
路由react-router
布局@rebass/grid react-blocks react-flexbox-grid
拖拽react-beautiful-dnd react-dnd react-sortable-hoc
代码编辑器react-codemirror2 react-monaco-editor
富文本编辑器react-quill braft-editor
JSON 显示器react-json-view
拾色器rc-color-picker react-color
响应式react-responsive react-media
复制到剪贴板react-copy-to-clipboard
页面 meta 属性react-helmet react-helmet-async
图标react-fa react-icons
二维码qrcode.react
可视化图编辑器GGEditor
顶部进度条nprogress
应用国际化react-intl
代码高亮react-syntax-highlighter
Markdown 渲染react-markdown
无限滚动react-virtualized antd-table-infinity
地图react-google-maps google-map-react react-amap 高德
视频播放react-player video-react video.js
右键菜单react-contextmenu react-contexify
Emojiemoji-mart
分割面板react-split-pane
图片裁切react-image-crop
趋势线react-sparklines
关键字高亮react-highlight-words
动画react-move Ant Motion react-spring

推荐产品 ✨

还有一些常用的前端/设计/产品相关的工具推荐给大家使用。

类型推荐产品
文档管理[[EMOJI:%F0%9F%90%A6]] 语雀
图标阿里巴巴矢量图标库
Sketch 插件Kitchen
在线代码编辑codesandbox codepen
图片压缩tinypng
图表分类查询图之典


Ant Design React 更新日志
Ant Design React 国际化
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Ant Design React 组件

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }