npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@grokku/parallax-scroller

v0.0.0

Published

A lightweight JavaScript library for adding smooth, responsive parallax scrolling effects to web pages, easy to integrate and customize.

Downloads

22

Readme

🔭 Parallax-Scroller

Parallax-Scroller is a versatile JavaScript module that creates captivating parallax scrolling effects, perfect for enhancing the visual appeal and interactivity of web pages.

Functionality

  • Data-Driven: Using data- attributes to define animations.
  • Customizable: Specify keyframe styles at various scroll points, with smooth interpolation between them.
  • Event Handling: Listener functionality for scroll events, providing information about the scrolling stage, progress, and affected elements.
  • Lifecycle Management: Straightforward methods for initializing and safely destroying scroll animations.

Installation

To install the module, run:

npm install @grokku/parallax-scroller

Or if you prefer using Yarn:

yarn add @grokku/parallax-scroller

Requirements

  • JavaScript ES6+
  • This module is an ECMAScript Module (ESM) and requires a JavaScript environment that supports ES Modules.

API Reference

init: Initializes the scroller by parsing keyframes and initiating the animation loop. Accepts an optional configuration object, including a root element and a listener. If no root is specified, the document body is used by default. The listener is triggered during the init lifecycle event for each defined element and when passing any of the defined keyframes, in both forward and backward directions.

destroy: Deactivates the scroller, removing applied styles and event listeners to reset the state.

Example Usage

Vanilla JavaScript:

import { init } from "@grokku/parallax-scroller";

init({
  root: document.getElementById("root"),
  listener: ({ name, stage, percentage, cssProp }) => {
    // Handle scroll events
  },
});

React Component:

import React, { useEffect } from "react";
import { init, destroy } from "@grokku/parallax-scroller";

const ParallaxComponent = () => {
  const listener = ({ name, stage, percentage, cssProp }) => {
    // Custom scroll event handling
  };

  useEffect(() => {
    init({ listener });
    return destroy;
  }, []);

  return <div>Your content here</div>;
};

export default ParallaxComponent;

HTML Structure

Each animated element should have a data-scroll attribute with a unique name for event tracking and debugging purposes. Define keyframes by adding data-[PERCENTAGE]p attributes with a style string, similar to the style attribute. Ensure consistency in the list of styles across all keyframes for a given element.

<div
  data-scroll="demo"
  data-50p="opacity: 0; margin-left: 0px; margin-top: 0px; transform: rotate(0deg) scale(0);"
  data-150p="opacity: 1; margin-left: 500px; margin-top: 0px; transform: rotate(180deg) scale(2);"
>
  🚗
</div>

Consistency is Key: Maintain the same set of styles across all keyframes for an element. Avoid adding or removing styles in different keyframes.

If you apply conflicting styles via style and data-[PERCENTAGE]p attributes, the former will be overwritten with the value that is currently interpolated in data-[PERCENTAGE]p. For example

<div
  data-scroll="demo"
  style="transform: scale(2)"
  data-0p="transform: translateX(0px)"
  data-120p="transform: translateX(100px)"
>
  🚌
</div>

transform: scale(2) will be overwritten. In order to keep it, you have to either add it to each data-[PERCENTAGE]p like:

<div
  data-scroll="demo"
  data-0p="transform: translateX(0px) scale(2)"
  data-120p="transform: translateX(100px) scale(2)"
>
  🚌
</div>

Or wrap contents with an element that has desired style:

<div
  data-scroll="demo"
  data-0p="transform: translateX(0px)"
  data-120p="transform: translateX(100px)"
>
  <span style="transform: scale(2)">🚌</span>
</div>

Performance Tips

  • Element Grouping: Group elements with similar animations under a common parent to optimize rendering.
  • Minimize Redundancy: Avoid unnecessary or unchanging data-[PERCENTAGE]p attributes.
  • Optimize Styles: Only animate properties that change during scroll.

Contributing

Contributions to the "Parallax-Scroller" action are welcome. Please ensure that your contributions adhere to the project's coding standards and include appropriate tests.