AutoScrollBox

阅读时间约 1 分钟

自动根据内容大小设置和更新容器的滚动条。

import { AutoScrollBox } from '@antv/x6-react-components'
import '@antv/x6-react-components/es/scroll-box/style/index.css'
import '@antv/x6-react-components/es/auto-scroll-box/style/index.css'

<div style={{ width: 300, height: 200, border: '1px solid #f0f0f0' }}>
  <AutoScrollBox>
    <div
      style={{
        position: 'relative',
        width: 1200,
        height: 3000,
        cursor: 'grab',
        background:
          'linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%), linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%), linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%)',
      }}
    >
      <div style={{ position: 'absolute', top: 8, left: 8 }}>Top-Left-Corner</div>
      <div style={{ position: 'absolute', top: 8, right: 8 }}>Top-Right-Corner</div>
      <div style={{ position: 'absolute', bottom: 8, left: 8 }}>Bottom-Left-Corner</div>
      <div style={{ position: 'absolute', bottom: 8, right: 8 }}>Bottom-Right-Corner</div>
    </div>
  </AutoScrollBox>
</div>

AutoScrollBox

参数说明类型默认值
scrollBoxProps内部的 ScrollBox 组件选项ScrollBox.Props-
refreshRate监听内容容器大小改变的频率number1000
skipOnMount首次渲染时是否触发 onResize 回调boolean-
scrollX是否显示水平滚动条booleantrue
scrollY是否显示垂直滚动条booleantrue
onResize内容容器大小改变时的回调函数(width: number, height: number) => void-