Sticky 粘性布局

介绍

Sticky 组件与 CSS 中 position: sticky 属性实现的效果一致,当组件在屏幕范围内时,会按照正常的布局排列,当组件滚出屏幕范围时,始终会固定在屏幕顶部。

引入

通过以下方式来全局注册组件,更多注册方式请参考组件注册

  1. import { createApp } from 'vue';
  2. import { Sticky } from 'vant';
  3. const app = createApp();
  4. app.use(Sticky);

代码演示

基础用法

将内容包裹在 Sticky 组件内即可。

  1. <van-sticky>
  2. <van-button type="primary">基础用法</van-button>
  3. </van-sticky>

吸顶距离

通过 offset-top 属性可以设置组件在吸顶时与顶部的距离。

  1. <van-sticky :offset-top="50">
  2. <van-button type="primary">吸顶距离</van-button>
  3. </van-sticky>

指定容器

通过 container 属性可以指定组件的容器,页面滚动时,组件会始终保持在容器范围内,当组件即将超出容器底部时,会固定在容器的底部。

  1. <div ref="container" style="height: 150px;">
  2. <van-sticky :container="container">
  3. <van-button type="warning">指定容器</van-button>
  4. </van-sticky>
  5. </div>
  1. export default {
  2. setup() {
  3. const container = ref(null);
  4. return { container };
  5. },
  6. };

吸底距离

position 设置为 bottom 可以让组件吸附在底部。通过 offset-bottom 属性可以设置组件在吸底时与底部的距离。

  1. <van-sticky :offset-bottom="50" position="bottom">
  2. <van-button type="primary">吸底距离</van-button>
  3. </van-sticky>

API

Props

参数说明类型默认值
position v3.0.6吸附位置,可选值为 bottomstringtop
offset-top吸顶时与顶部的距离,支持 px vw vh rem 单位,默认 pxnumber | string0
offset-bottom v3.0.6吸底时与底部的距离,支持 px vw vh rem 单位,默认 pxnumber | string0
z-index吸顶时的 z-indexnumber | string99
container容器对应的 HTML 节点Element-

Events

事件名说明回调参数
change v3.0.10当吸顶状态改变时触发isFixed: boolean
scroll滚动时触发{ scrollTop: number, isFixed: boolean }

类型定义

组件导出以下类型定义:

  1. import type { StickyPosition } from 'vant';

主题定制

样式变量

组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件

名称默认值描述
—van-sticky-z-index99-

Sticky 粘性布局 - 图1