ant-design/components/enter-animation/demo/simple.md
2015-10-20 16:47:55 +08:00

492 B

默认

  • order: 0

最简单的进场例子。


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'));