Socket
Socket
Sign inDemoInstall

@lucien144/vue3-parallaxy

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lucien144/vue3-parallaxy

Lightweight yet powerful parallax component for Vue3.


Version published
Weekly downloads
282
decreased by-10.76%
Maintainers
1
Install size
19.9 kB
Created
Weekly downloads
 

Readme

Source

Parallaxy

💥 Lightweight yet powerful parallax component for Vue3 with breakpoints option and animation callback. Nuxt3 ready.


👉 Examples and usage here. 👈


Installation

npm i @lucien144/vue3-parallaxy
# yarn add @lucien144/vue3-parallaxy

Usage

<template>
	<Parallaxy :speed="20" :animation="(delta: number) => `transform: translate3d(0, ${delta}px, 0);`">
		<img src="https://picsum.photos/400">
	</Parallaxy>
</template>

<script setup lang="ts">
import Parallaxy from '@lucien144/vue3-parallaxy';
</script>

Props

PropsTypeDefault / OptionsDescription
axisstringy / y, xAxis of the movement.
speednumber50Speed of the movement. Higher number -> faster. Negative values changes the direction.
directionstringnormal / normal, oppositeDirection of the movement. normal -> up on y axis etc.
breakpointsobjectundefined / {[breakpoint: number]: {ParallaxyOptions}}You can specify all props for different breakpoints. If window width >= breakpoint then the settings is applied, zero breakpoint is the default settings. See the Example 5.
animationFunction(delta: string) => ...Custom CSS style animation where delta is the position offset of the element relative to the bottom of the viewport.
(delta: string) => transform: translate3d(0, ${delta.value}px, 0);For the y axis.
(delta: string) => transform: translate3d(${delta.value}px, 0, 0);For the x axis.
disabledbooleanfalseEnable / disable the parallax effect.
debugbooleanfalseShow the debug panel.

Few notes under the line

  • When using custom animations, always work with transform: translate3d(0, 0, 0) to turn on the GPU acceleration.
  • Keep in mind that moving element may run out of it's bounding box, thus, use overflow: hidden as much as you can.

Keywords

FAQs

Last updated on 26 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc