Vant3 Sticky 粘性布局

介绍

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

实例演示

引入

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

import { createApp } from vue;
import { Sticky } from vant;

const app = createApp();
app.use(Sticky);

代码演示

基础用法

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

<van-sticky>
  <van-button type="primary">基础用法</van-button>
</van-sticky>

吸顶距离

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

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

指定容器

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

<div ref="container" style="">
  <van-sticky :container="container">
    <van-button type="warning">指定容器</van-button>
  </van-sticky>
</div>
export default {
  setup() {
    const container = ref(null);
    return { container };
  },
};

吸底距离

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

<van-sticky :offset-bottom="50" position="bottom">
  <van-button type="primary">吸底距离</van-button>
</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 }

样式变量

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

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

作者:唐伯虎点蚊香,如若转载,请注明出处:https://www.web176.com/vant3/18694.html

(0)
打赏 支付宝 支付宝 微信 微信
唐伯虎点蚊香的头像唐伯虎点蚊香
上一篇 2023年4月28日
下一篇 2023年4月28日

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注