Skip to content
On this page

图钉 Affix

基础用法

原生滚动相对于window窗口固定,也可以结合scrollbar进行配置

<template>
  <b-affix :offset="80">
    <b-button type="primary">固定在顶部80的位置</b-button>
  </b-affix>
</template>
<template>
  <b-affix :offset="80">
    <b-button type="primary">固定在顶部80的位置</b-button>
  </b-affix>
</template>

固定位置

可以设置固定距离底部的位置

<template>
  <b-affix :offset="20" position="bottom">
    <b-button type="primary">固定在底部20的位置</b-button>
  </b-affix>
</template>
<template>
  <b-affix :offset="20" position="bottom">
    <b-button type="primary">固定在底部20的位置</b-button>
  </b-affix>
</template>

Props

参数说明类型可选值默认值
offset距离窗口位置触发Number0
position可设置距离顶部或底部Stringtop、bottomtop
z-index层级Number10

Events

事件名说明返回值
change在固定状态发生改变时触发true/false
scroll滚动响应事件 ,返回对象包含scrollTop, fixedObject

Slot

名称说明
default警告提示内容