@pluginjs/scroll-progress

0.8.12 • Public • Published

ScrollProgress

npm package

A flexible modern scroll-progress js plugin.

Samples

Introduction

Installation

Yarn

yarn add @pluginjs/scroll-progress

NPM

npm i @pluginjs/scroll-progress

Getting Started

CDN:

Development:

<script src="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.css">

Production:

<script src="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.min.css">

Initialize

HTML:

<div class="element"></div>

ECMAScript Module:

import ScrollProgress from "@pluginjs/scroll-progress"
import "@pluginjs/scroll-progress/dist/scroll-progress.css"

ScrollProgress.of(document.querySelector('.element'), options)

CommonJS:

require("@pluginjs/scroll-progress/dist/scroll-progress.css")
const ScrollProgress = require("@pluginjs/scroll-progress")

ScrollProgress.of(document.querySelector('.element'), options)

Browser:

<link rel="stylesheet" href="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.css">
<script src="https://unpkg.com/@pluginjs/scroll-progress/dist/scroll-progress.js"></script>
<script>
  Pj.scrollProgress('.element', options)
</script>

API

Options

Options are called on scrollProgress instances through the scrollProgress options itself. You can also save the instances to variable for further use.

Name Description Default
"size" Define the size of Progress bar 5
"color" Define the color of Progress bar #50bcb6
"opacity" Define the opacity of Progress bar, value must be between 0 and 1 1
"custom" Define the scroll element, the false is window, the true is element false
"appendTo" Define the progress bar appendTo element, value must be an element selector body
"position" Define the position of Progress bar(top and bottom for horizontal's position, left or right for vertical's position ) top-left
"templates" Template blocks {}

Events

Events are called on scrollProgress instances through the scrollProgress events itself. You can also save the instances to variable for further use.

Name Description
"ready" Gets fired when plugin is ready
"enable" Gets fired when plugin is enabled
"disable" Gets fired when plugin is disabled
"destroy" Gets fired when plugin is destroy
"refresh" Gets fired when refresh Progress bar

Methods

Methods are called on scrollProgress instances through the scrollProgress method itself. You can also save the instances to variable for further use.

Name Description
"enable" Enabled plugin if plugin is disabled
"disable" Disable plugin
"destroy" Destroy plugin
"refresh" refresh Progress bar

Classes

Name | Description | Default --|| "NAMESPACE" | Declare plugin namespace | pj-scrollProgress "BAR" | Declare bar | {namespace}-bar "DISABLED" | Announce plugin is disabled | {namespace}-disabled

Browser support

Tested on all major browsers.

IE / EdgeIE / Edge FirefoxFirefox ChromeChrome SafariSafari OperaOpera
IE11, Edge last 2 versions last 2 versions last 2 versions last 2 versions

License

@pluginjs/scroll-progress is Licensed under the GPL-v3 license.

If you want to use @pluginjs/scroll-progress project to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary.

For purchase an Commercial License, contact us purchase@thecreation.co.

Copyright

Copyright (C) 2022 Creation Studio Limited.

Readme

Keywords

none

Package Sidebar

Install

npm i @pluginjs/scroll-progress

Homepage

pluginjs.com

Weekly Downloads

3

Version

0.8.12

License

GPL-3.0

Unpacked Size

60 kB

Total Files

13

Last publish

Collaborators

  • thecreation
  • kaptinlin