scroll-callback

0.4.0 • Public • Published

scroll-callback

A scroll event listener module

Install

yarn add scroll-callback

Description

This module can be used to fire a callback on a page scroll. Many scenarios are handled.

You can:

  • Fire a callback when an element reaches the top of the screen
  • Fire a callback when an element reaches the bottom of the screen
  • Fire a callback and return the element everytime the page scrolls
  • Fire a callback when multiple elements reaches the top of the screen
  • ...more!

This is element focused and can be used in many ways.

A work-in-progress JS module.

Built by: Mario Lo

Example

import { 
    scrollCallback, 
    scrollCallbackWithElement, 
    scrollCallbackWithElements,
    callbackAtElement, 
    callbackAtElements,
    callbackAtElementSurface 
} from 'scroll-callback';
 
(() => {
    scrollCallback(callback(), 1000);
    scrollCallbackWithElement(callback(), 1000, 'html-id');
    scrollCallbackWithElements(callback(), 1500, 'html-class');
    callbackAtElement(callback(), 1500, 'html-id');
    callbackAtElements(callback(), 1500, 'html-class');
    callbackAtElementSurface(callback(), 1500, 'html-id');
})();
 

Functions

1. scrollCallback(callback, waitDuration)

Fires a callback as the page is scrolling.

Does not remove the event listener.

2. scrollCallbackWithElement(callback, waitDuration, elementId)

Fires the callback as the page is scrolling and returns the element in the callback.

Does not remove the event listener.

Returns the element in callback

3. scrollCallbackWithElements(callback, waitDuration, elementClass)

Pass in a class.

Fires the callback as the page is scrolling and returns the elements in the callback.

Does not remove the scroll event listener.

Returns a elements in callback

4. callbackAtElement(callback, waitDuration, elementId)

Fires the callback when the element reaches the top of the page.

Removes the event listener.

Returns the element in callback

5. callbackAtElements(callback, waitDuration, elementClass)

Pass in class.

Fires the callback when the element reaches the top of the page.

Remove the event listener when all elements have been "called back"

Returns the elements in callback

6. callbackAtElementSurface(callback, waitDuration, elementId)

Fires the callback when the element reaches the bottom of the page.

Remove the scroll event listener

Returns the element in callback

7. getElementByClass(className)

Gets the elements via class name. Calls querySelectorAll().

Returns a static nodeList

Parameters

Parameter Name Type Required Default Value Description
callback function true null A function to be called on scroll
waitDuration number or null for default false 50 Wait duration in between callback
elementId string false null The id of the element we want the position of
elementClass string false true The id of the element we want the position of
className string false true Class name of elements we want

callback

type: function

This function will be called as the window is scrolling.

waitDuration

type: number

This is a wait time in milli-seconds. This is provided to give you custom timing to fire your callback.

elementId

type: string

An element ID in the DOM. If supplied, the element be returned to the callback.

className

type: string

This should be the class name of the elements we want.

Contributing

Please open a new issue and mention me to get the ball rolling. Thanks!

Future Features

  • Ability to handle multiple elements

Feature Request

Please message hello@websitesbymario.com for feature requests.

Bug Report

Please message hello@websitesbymario.com to report bugs.

Package Sidebar

Install

npm i scroll-callback

Weekly Downloads

14

Version

0.4.0

License

ISC

Unpacked Size

11.8 kB

Total Files

10

Last publish

Collaborators

  • mariolo1985