mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-29 08:01:26 +08:00
28 lines
492 B
Markdown
28 lines
492 B
Markdown
# 默认
|
|
|
|
- order: 0
|
|
|
|
最简单的进场例子。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var EnterAnimation = antd.EnterAnimation;
|
|
|
|
ReactDOM.render(
|
|
<EnterAnimation>
|
|
<ul key="key">
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
<li>依次进场</li>
|
|
</ul>
|
|
</EnterAnimation>
|
|
, document.getElementById('components-enter-animation-demo-simple'));
|
|
````
|
|
|