您的位置:MYSQL中文网 > uniapp粘性布局 Vant3 Sticky 粘性布局

uniapp粘性布局 Vant3 Sticky 粘性布局

2023-07-17 12:30 Vant3中文教程

uniapp粘性布局 Vant3 Sticky 粘性布局

uniapp粘性布局

uniapp粘性布局是一种特殊的布局方式,它可以让元素在页面中固定位置,并且不会随着页面的滚动而改变位置。这样的布局方式在很多场景中都有用,例如导航栏、侧边栏、底部工具栏等。

uniapp中实现粘性布局有两种方式,一是使用 position 属性,二是使用 fixed 属性。position 属性可以将元素固定在某个位置,但是当页面滚动时,元素会随之滚动。而 fixed 属性则可以将元素固定在浏览器的某个位置,即使页面滚动也不会随之改变位置。

// 使用 position 属性实现 uniapp 粘性布局
.sticky { 
    position: sticky;  // 这里的 sticky 是一个特殊的值 
    top: 0; // 距浏览器上部 0px 
} 
// 使用 fixed 属性实现 uniapp 粘性布局 
.sticky { 
    position: fixed;   // 这里的 fixed 是一个特殊的值  
    top: 0; // 距浏览器上部 0px  
}  														   

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="height: 150px;">
  <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 吸附位置,可选值为 bottom string top
offset-top 吸顶时与顶部的距离,支持 px vw vh rem 单位,默认 px number | string 0
offset-bottom v3.0.6 吸底时与底部的距离,支持 px vw vh rem 单位,默认 px number | string 0
z-index 吸顶时的 z-index number | string 99
container 容器对应的 HTML 节点 Element -

Events

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

样式变量

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

名称 默认值 描述
--van-sticky-z-index 99 -


阅读全文
以上是MYSQL中文网为你收集整理的uniapp粘性布局 Vant3 Sticky 粘性布局全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 MYSQL中文网 mysqlcn.com 版权所有 联系我们
桂ICP备12005667号-29 Powered by CMS