basic.md 1.32 KB
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

ReactDOM.render(
afc163's avatar
afc163 committed
14 15 16 17 18 19 20 21
  <div style={{ background: '#f7f7f7', padding: 24 }}>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
afc163's avatar
afc163 committed
22 23 24 25 26 27 28 29 30 31
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <p>页面内容 页面内容 页面内容 页面内容</p>
    <FooterToolbar extra="提示信息">
      <Button>取消</Button>
afc163's avatar
afc163 committed
32
      <Button type="primary">提交</Button>
afc163's avatar
afc163 committed
33 34 35 36
    </FooterToolbar>
  </div>
, mountNode);
````