GithubHelp home page GithubHelp logo

digitalkaoz / scrollmap Goto Github PK

View Code? Open in Web Editor NEW

This project forked from benobee/scrollmap

0.0 3.0 0.0 41 KB

A module for testing if a DOM element is visible in the viewport. Trigger callbacks are provided, as well as a configuration for surface trigger area.

Home Page: https://www.npmjs.com/package/scrollmap

HTML 12.39% JavaScript 87.61%

scrollmap's Introduction


SCROLLMAP

Description

A module for testing if a DOM element is visible in the viewport, then triggers callbacks on execution.


Using ES6:

import Scrollmap from 'scrollmap';

Using a CDN via jsDelivr:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/cdn/scrollmap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/cdn/scrollmap.js"></script>

Method - trigger(options, callback)

Description: A method for adding triggers when element is visible in the viewport.

Properties for options config object:

target (string or element): Using querySelectorAll a target string selector is needed, or you can specify an actual element.

surfaceVisible (number): the percentage area, which is represented as a number from 0 - 1 is the area of the element which is visible in the viewport.

runOnScroll (boolean) : by default the callback is run only one time whent the element is visible. By changing to true, the callback will be run as long as the scroll event is happening.

alwaysRunOnTrigger (boolean): by default the triggered element callback will only be executed one time. Setting to true will re-trigger the callback everytime the element has been in and out of the viewport.

treshold (number): add this much pixels to calculation to the visibility check (useful if you want to execute code just before the element becomes visible)

callback (object): This is the function which will be exectued when the element is detected in the viewport. To reference the node, pass it into the callback as an argument.

EXAMPLE

Scrollmap.trigger({
    target: '.collection-list .items',
    surfaceVisible: 0.5,
    runOnScroll: true,
    alwaysRunOnTrigger: true,
    treshold: 200
}, (element) => {
    $(element).addClass("visible");
});

Method - sequence(options, callback)

Description: A method for staggering an array of triggers.

Properties for options config object:

interval: (number) : changes the interval speed of the sequence

order: (string) : changes the order of the sequence. Order options are "random", and "reverse".

callback (item, index): can get the item and index of the array as arguments

EXAMPLE

Scrollmap.trigger({
    target: ".boxes",
    surfaceVisible: 0.2
}, (element) => {

    //define the array of the elements to sequence

    const array = element.querySelectorAll(".box");

    //use the sequence method to define, interval and callback
    //function.

    Scrollmap.sequence(array, {
        interval: 5,
        order: "random"
    }, (item) => {

        //add any code to be triggered when
        //the element is in the viewport

        item.classList.add("color-change");

    });
});

Method - out(function)

When the trigger is has been executed and the element is no longer in the viewport, the out method can be chained to the trigger to execute the specified function.

EXAMPLE

Scrollmap.trigger({
    target: ".boxes",
    surfaceVisible: 0.2
}, (element) => {
    element.classList.add("foo");
}).out((element) => {
    element.classList.add("bar");
});

Hooks

data-scrollmap-loaded (boolean): Once the element is initialized.

data-scrollmap-is-visible (boolean): If element is visible is viewport, the value will be set to true. When the elemnt is out of the viewport the value will be false.

data-scrollmap-triggered-in (boolean): After element detection in viewport, a boolean will be set to true. False is set as default.

data-scrollmap-triggered-out (boolean): After element detection is in and out of the viewport, a boolean will be set to true. False is set as default.

scrollmap's People

Contributors

benobee avatar digitalkaoz avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.