2020-12-09 10:16:36 +08:00
..
2020-12-09 10:16:36 +08:00
2020-11-25 22:39:06 +08:00
2020-11-16 11:41:46 +08:00
2020-12-09 10:16:36 +08:00

Sticky

Install

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

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

Usage

Basic Usage

<van-sticky>
  <van-button type="primary">Basic Usage</van-button>
</van-sticky>

Offset Top

<van-sticky :offset-top="50">
  <van-button type="primary">Offset Top</van-button>
</van-sticky>

Set Container

<div ref="container" style="height: 150px;">
  <van-sticky :container="container">
    <van-button type="warning">Set Container</van-button>
  </van-sticky>
</div>
export default {
  setup() {
    const container = ref(null);
    return { container };
  },
};

API

Props

Attribute Description Type Default
offset-top v2.8.7 Offset top, supports px vw vh rem unit, default px number | string 0
z-index z-index when sticky number | string 99
container Container DOM Element -

Events

Event Description Arguments
scroll Emitted when scrolling object: { scrollTop, isFixed }

Less Variables

How to use: Custom Theme.

Name Default Value Description
@sticky-z-index 99 -