Skip to content

benoitdelorme/nuxt3-lenis

Repository files navigation

⚠️ WARNING
This library will no longer be updated. I recommend using the official version of Lenis Vue instead:
Lenis Vue Official GitHub
Please migrate to the official library for continued updates and support.

Nuxt3 Lenis

Introduction

nuxt3-lenis provides a <LenisContainer> component that creates a Lenis instance.

Installation

For npm users:

npm i nuxt3-lenis

For yarn users:

yarn add nuxt3-lenis

Add the module in nuxt.config

modules: [
  "nuxt3-lenis"
],

Usage

<template>
  <LenisContainer root>
    <!-- Content -->
  </LenisContainer>
</template>

<script setup>
const lenis = useLenis(({scroll, velocity, progress, direction}) => { ... })
</script>

Props

  • options: Lenis options.
  • root: Lenis will be instanciate using <html> scroll. Default: false.
  • autoRaf: if false, lenis.raf needs to be called manually. Default: true.
  • rafPriority: Tempus execution priority. Default: 0.

Events


Hooks

Once the Lenis context is set (components mounted inside <LenisContainer>) you can use these handy hooks:

useLenis is a hook that returns the Lenis instance

The hook takes three argument:

  • callback: The function to be called whenever a scroll event is emitted
  • deps: Trigger callback on change
  • priority: Manage callback execution order

Examples

With customs options

<template>
  <LenisContainer :options="options" root>
    <!-- Content -->
  </LenisContainer>
</template>

<script setup>
const options = {
  duration: 1.2,
  easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),
  orientation: "horizontal",
  gestureOrientation: "vertical",
};
</script>

GSAP integration

<template>
  <LenisContainer ref="lenisRef" :autoRaf="false" root>
    <!-- Content -->
  </LenisContainer>
</template>

<script setup>
const lenisRef = ref(null);

const onFrame = (time) => {
  lenisRef.value.instance.raf(time * 1000);
};

onMounted(() => {
  gsap.ticker.add(onFrame);
});

onBeforeUnmount(() => {
  gsap.ticker.remove(onFrame);
});
</script>

Scroll Event

<template>
  <LenisContainer @scroll="onScroll" root>
    <!-- Content -->
  </LenisContainer>
</template>

<script setup>
const onScroll = ({ scroll, velocity, direction, progress }) => {
  console.log({ scroll, velocity, direction, progress });
};
</script>

With custom rAF

<template>
  <LenisContainer ref="lenisRef" :autoRaf="false" root>
    <!-- Content -->
  </LenisContainer>
</template>

<script setup>
const lenisRef = ref(null);

const onFrame = (time) => {
  lenisRef.value.instance.raf(time);
};

onMounted(() => {
  lenisRef.value.instance.on(
    "scroll",
    ({ scroll, velocity, direction, progress }) => {
      console.log({ scroll, velocity, direction, progress });
    }
  );

  Tempus.add(onFrame, 0);
});

onBeforeUnmount(() => {
  Tempus.remove(onFrame, 0);
});
</script>