ant-design/components/upload/demo/picture-style.md

79 lines
1.9 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 8
2016-08-25 09:46:19 +08:00
title:
zh-CN: 图片列表样式
en-US: Pictures with list style
2016-03-31 09:40:55 +08:00
---
2015-12-12 15:25:54 +08:00
2016-08-25 09:46:19 +08:00
## zh-CN
上传文件为图片,可展示本地缩略图。`IE8/9` 不支持浏览器本地缩略图展示([Ref](https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL)),可以写 `thumbUrl` 属性来代替。
## en-US
2017-08-01 18:22:55 +08:00
If uploaded file is a picture, the thumbnail can be shown. `IE8/9` do not support local thumbnail show. Please use `thumbUrl` instead.
2016-08-25 09:46:19 +08:00
2017-02-13 10:55:53 +08:00
````jsx
2015-12-12 15:25:54 +08:00
import { Upload, Button, Icon } from 'antd';
2017-03-08 14:42:34 +08:00
const fileList = [{
uid: '-1',
2017-03-08 14:42:34 +08:00
name: 'xxx.png',
status: 'done',
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
}, {
uid: '-2',
2017-03-08 14:42:34 +08:00
name: 'yyy.png',
status: 'done',
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
}];
2015-12-12 15:25:54 +08:00
const props = {
2017-03-08 12:17:46 +08:00
action: '//jsonplaceholder.typicode.com/posts/',
2015-12-12 15:25:54 +08:00
listType: 'picture',
2017-03-08 14:42:34 +08:00
defaultFileList: [...fileList],
};
const props2 = {
action: '//jsonplaceholder.typicode.com/posts/',
listType: 'picture',
defaultFileList: [...fileList],
className: 'upload-list-inline',
2015-12-12 15:25:54 +08:00
};
ReactDOM.render(
<div>
<Upload {...props}>
2017-02-04 22:35:33 +08:00
<Button>
<Icon type="upload" /> Upload
</Button>
</Upload>
<br />
<br />
2017-03-08 14:42:34 +08:00
<Upload {...props2}>
2017-02-04 22:35:33 +08:00
<Button>
<Icon type="upload" /> Upload
</Button>
</Upload>
2018-06-27 15:55:04 +08:00
</div>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-12-12 15:25:54 +08:00
````
2016-01-13 22:43:55 +08:00
````css
2016-08-25 09:46:19 +08:00
/* tile uploaded pictures */
2016-01-13 22:43:55 +08:00
.upload-list-inline .ant-upload-list-item {
float: left;
2016-01-13 22:43:55 +08:00
width: 200px;
margin-right: 8px;
}
.upload-list-inline .ant-upload-animate-enter {
animation-name: uploadAnimateInlineIn;
}
.upload-list-inline .ant-upload-animate-leave {
animation-name: uploadAnimateInlineOut;
}
2016-01-13 22:43:55 +08:00
````