Socket
Socket
Sign inDemoInstall

dual-side-scroll

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dual-side-scroll

It's a tiny freeware library on TypeScript to sinhronize page scrolling and navigation meny-bar.


Version published
Maintainers
1
Install size
30.8 kB
Created

Readme

Source

Scroll progress (dual-side-scroll) v1.2.3

npm npm npm bundle size GitHub license

Assignment

This tiny plugin is designed to show the progress of the page scrolling interactively. There are two types of actions: onScrolled and onChanged. They can be used together or separately.

  • onScrolled - returns to the progress for each scroll event. It is convenient to use when you need to display progress in real time.
  • onChanged - works only when one paragraph is replaced to another. This is useful for switching the active menu item in the navigation block.

LiveDemo

How does it work?

All you need is a navigation menu with links to the relevant paragraphs in the text. When initializing an object, you need to specify cursor and menu selectors, as well as a callback function.

When the onScrolled event is used, an object will be sent to the processing unit:

    Progress {
        // id of current paragraph
        Id: string;
        // % of paragraph being reviewed
        Percent: number;
    }

When the onChanged event is used, the id of the current paragraph will be sent to the processing unit.

When the window is changed in size, the script automatically will be adjuscted to the proportional value. This is sometimes needed in the mobile version. When the device screen is rotated, the scrolling will continue to work correctly.

Installation

npm i dual-side-scroll

Take the minified version of the script from dist and place it in your application directory. Make sure the plugin connection string is located above the connection string of your scripts.

<script src="./<your_js_directory>/scroll-progress.min.js"></script>

For debugging purposes, there is an unminified version with sourcemap.

Example

The source code of the page LiveDemo script.

document.addEventListener("DOMContentLoaded", function (event) {
    let currentParagraphName = document.getElementById('current-paragraph-name');
    let currentParagraphPercent = document.getElementById('current-paragraph-percent');

    new ScrollProgress.Init(
        "#cursor",
        "menu",
        progress => {
            currentParagraphName.innerText = document.getElementById(progress.Id).innerText;
            currentParagraphPercent.innerText = progress.Percent + '%';
        },
        id => {
            document.querySelectorAll('a[href*="link"]')
                .forEach(element => 
                    element.classList.remove('active-meny-item')
                );
            document.querySelector(`[href="#${id}"]`).classList
                .add('active-meny-item');
        }
    );
});

Planned updates

  • Interactive cursor to scroll the page
  • Bookmarks in paragraphs

Keywords

FAQs

Last updated on 10 Mar 2021

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