mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
24 lines
285 B
Markdown
24 lines
285 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 动画效果
|
|
en-US: Active Animation
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
显示动画效果。
|
|
|
|
## en-US
|
|
|
|
Display active animation.
|
|
|
|
```tsx
|
|
import { Skeleton } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => <Skeleton active />;
|
|
|
|
export default App;
|
|
```
|