basic.md 895 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
---
order: 0
title: 演示
iframe: 600
---

浮动固定页脚。

````jsx
import FooterToolbar from 'ant-design-pro/lib/FooterToolbar';
import { Icon } from 'antd';

ReactDOM.render(
  <div style={{ background: '#f7f7f7' }}>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <FooterToolbar extra="提示信息">
      <Button type="primary">提交</Button>
      <Button>取消</Button>
    </FooterToolbar>
  </div>
, mountNode);
````