You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/antdv-demo/docs/affix/index.zh-CN.md

1.2 KiB

API

成员 说明 类型 默认值 版本
offsetBottom 距离窗口底部达到指定偏移量后触发 number
offsetTop 距离窗口顶部达到指定偏移量后触发 number
target 设置 Affix 需要监听其滚动事件的元素,值为一个返回对应 DOM 元素的函数 () => HTMLElement () => window

事件

事件名称 说明 回调参数 版本
change 固定状态改变时触发的回调函数 Function(affixed)

注意:Affix 内的元素不要使用绝对定位,如需要绝对定位的效果,可以直接设置 Affix 为绝对定位:

<a-affix :style="{ position: 'absolute', top: y, left: x}">
  ...
</a-affix>

FAQ

Affix 使用 target 绑定容器时,元素会跑到容器外。

从性能角度考虑,我们只监听容器滚动事件。

相关 issue#3938 #5642 #16120