basic.md 897 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2 3
---
order: 0
title: 演示
afc163's avatar
afc163 committed
4
iframe: 400
afc163's avatar
afc163 committed
5 6 7 8 9 10
---

浮动固定页脚。

````jsx
import FooterToolbar from 'ant-design-pro/lib/FooterToolbar';
afc163's avatar
afc163 committed
11
import { Button } from 'antd';
afc163's avatar
afc163 committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

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