2023-06-21 19:58:28 +08:00
|
|
|
import React from 'react';
|
2023-07-28 16:17:43 +08:00
|
|
|
import { Image } from 'antd';
|
2023-06-21 19:58:28 +08:00
|
|
|
|
|
|
|
const App: React.FC = () => (
|
|
|
|
<Image
|
|
|
|
width={200}
|
|
|
|
preview={{
|
2024-05-08 19:05:50 +08:00
|
|
|
destroyOnClose: true,
|
2023-06-21 19:58:28 +08:00
|
|
|
imageRender: () => (
|
|
|
|
<video
|
|
|
|
muted
|
|
|
|
width="100%"
|
|
|
|
controls
|
|
|
|
src="https://mdn.alipayobjects.com/huamei_iwk9zp/afts/file/A*uYT7SZwhJnUAAAAAAAAAAAAADgCCAQ"
|
|
|
|
/>
|
|
|
|
),
|
2023-07-12 09:43:51 +08:00
|
|
|
toolbarRender: () => null,
|
2023-06-21 19:58:28 +08:00
|
|
|
}}
|
|
|
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default App;
|