AvatarList用户头像列表

一组用户头像,常用在项目/团队成员列表。可通过设置 size 属性来指定头像大小。

引用方式:

  1. import AvatarList from 'ant-design-pro/lib/AvatarList';

详细使用方式请参照:独立使用 pro 组件

代码演示

AvatarList 用户头像列表 - 图1

基础样例

Simplest of usage.

  1. import AvatarList from 'ant-design-pro/lib/AvatarList';
  2. ReactDOM.render(
  3. <AvatarList size="mini">
  4. <AvatarList.Item
  5. tips="Jake"
  6. src="https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png"
  7. />
  8. <AvatarList.Item
  9. tips="Andy"
  10. src="https://gw.alipayobjects.com/zos/rmsportal/sfjbOqnsXXJgNCjCzDBL.png"
  11. />
  12. <AvatarList.Item
  13. tips="Niko"
  14. src="https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png"
  15. />
  16. </AvatarList>,
  17. mountNode
  18. );

AvatarList 用户头像列表 - 图2

要显示的最大项目

maxLength attribute specifies the maximum number of items to show while excessItemsStyle style the excess item component.

  1. import AvatarList from 'ant-design-pro/lib/AvatarList';
  2. ReactDOM.render(
  3. <AvatarList
  4. size="mini"
  5. maxLength={3}
  6. excessItemsStyle={{ color: '#f56a00', backgroundColor: '#fde3cf' }}
  7. >
  8. <AvatarList.Item
  9. tips="Jake"
  10. src="https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png"
  11. />
  12. <AvatarList.Item
  13. tips="Andy"
  14. src="https://gw.alipayobjects.com/zos/rmsportal/sfjbOqnsXXJgNCjCzDBL.png"
  15. />
  16. <AvatarList.Item
  17. tips="Niko"
  18. src="https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png"
  19. />
  20. <AvatarList.Item
  21. tips="Niko"
  22. src="https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png"
  23. />
  24. <AvatarList.Item
  25. tips="Niko"
  26. src="https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png"
  27. />
  28. <AvatarList.Item
  29. tips="Niko"
  30. src="https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png"
  31. />
  32. </AvatarList>,
  33. mountNode
  34. );

API

AvatarList

参数说明类型默认值
size头像大小largesmallmini, defaultdefault
maxLength要显示的最大项目number-
excessItemsStyle多余的项目风格CSSProperties-

AvatarList.Item

参数说明类型默认值
tips头像展示文案ReactNode-
src头像图片连接string-