Affix 固钉

将页面元素钉在可视范围。

何时使用

  • 当内容区域比较长,需要滚动页面时,这部分内容对应的操作或者导航需要在滚动范围内始终展现。常用于侧边菜单和按钮组合。
  • 页面可视范围过小时,慎用此功能以免遮挡页面内容。

代码演示

基本

最简单的用法。

  1. <template>
  2. <v-affix>
  3. <button type="button" class="ant-btn ant-btn-primary"><span>固定在顶部2</span></button>
  4. </v-affix><br>
  5. <v-affix :offset-bottom="0">
  6. <button type="button" class="ant-btn ant-btn-primary"><span>固定在底部</span></button>
  7. </v-affix>
  8. </template>

固定状态改变的事件

可以获得是否固定的状态。

  1. <template>
  2. <v-affix :offset-top="120" @change='onChange'>
  3. <button type="button" class="ant-btn"><span>固定在距离顶部 120px 的位置</span></button>
  4. </v-affix>
  5. </template>
  6. <script>
  7. export default {
  8. methods: {
  9. onChange: affixed => console.log(affixed)
  10. }
  11. }
  12. </script>

API

Affix Props

参数说明类型默认值
offsetTop距离窗口顶部达到指定偏移量后触发Number-
offsetBottom距离窗口底部达到指定偏移量后触发Number-

Affix Events

参数说明回调参数
change固定状态改变时触发的事件affixed