@teamthunderfoot/translate-on-scroll

0.0.7 • Public • Published

translate-on-scroll

The translate-on-scroll package allows you to create translation animations on scroll for an specified element, with options for customizing the displacement, start position, and responsiveness based on viewport width.

Here's an example

Installation

npm install @teamthunderfoot/translate-on-scroll

Usage

import TranslateOnScroll from "@teamthunderfoot/translate-on-scroll"

class Index {
    constructor() {
        this.init()
    }
    init() {
        document.querySelectorAll(".js--tos").forEach((element) => {
            new TranslateOnScroll({
                element: element,
                defaultStart: "70%",
                breakpoint: 1024,
                breakpointMod: 0.1, //if data-tos=400 -> from 1024px of window.width, the distance of displacement will be 40px (400 * 0.1)
                // pinnedContainer: document.querySelector(".js--example"),
                // markers: true,
            })
        })
    }
}

export default Index
new Index()

HTML attributes

data-tos (required): represents the displacement factor for the translation animation.. It's the only required option. The value is the Y axis in pixels. Allowed value: integer (positive or negative).

data-tos-bg: it sets the element's height to 100% + displacement pixels. This is useful when the element is a background element that needs to expand along with the translation. Allowed value: "true"

data-tos-start: It determines the starting point of scrolling the screen for the animation. If the element has a data-tos-start attribute, it uses that value; otherwise, it uses the defaultStart (see JS Options) value. Allowed values: "top" / "center" / "bottom" / "X%"" / "Xpx"

data-tos-movement: If data-tos-movement is set to "from," the animation starts from the displacement pixels and moves to its original position when the user reaches the center of the screen. If not, the animation starts from the original position and moves by the displacement pixels when the user scrolls. Allowed values: "from" / "to" (by default)

<div data-tos="-200" data-tos-start="top" data-tos-bg="true" data-tos-movement="from" />

JS Options

element (required): represents the element that will be translated. It's the only required option.

defaultStart: determines the default starting position of the translation if the data-tos-start attribute is not defined in the HTML. It defaults to "80%" if not provided.

breakpoint: determines the width breakpoint for applying a modifier to the translation distance. If the viewport width is greater than or equal to this breakpoint, the modifier is 1. It defaults to 810 if not provided.

breakpointMod: determines the modifier applied to the translation distance when the viewport width is below the breakpoint. It defaults to 0.4 (40% of the distance) if not provided.

pinnedContainer (optional): It is used when having pinned elements inside another pinned element. It is not necessary to set it if it is not the mentioned use case. It is necessary for example, when we use horizontal scroll in the same page. It defaults to null if not provided.

markers (optional): Whether to display markers for ScrollTrigger. It defaults to false if not provided.

Usefull Events

. destroy () : Kills the ScrollTrigger instance, immediately unpinning and restoring any pin-related changes made to the DOM by ScrollTrigger and removing all scroll-related listeners.

. refresh () : Recalculates the positioning of all of the ScrollTriggers on the page; this typically happens automatically when the window/scroller resizes

Package Sidebar

Install

npm i @teamthunderfoot/translate-on-scroll

Weekly Downloads

0

Version

0.0.7

License

ISC

Unpacked Size

3.13 MB

Total Files

13

Last publish

Collaborators

  • amaia9
  • nereafontecha
  • andresclua