@pluginjs/range

0.8.12 • Public • Published

Range

npm package

A flexible modern range js plugin.

Samples

Introduction

Installation

Yarn

yarn add @pluginjs/range

NPM

npm i @pluginjs/range

Getting Started

CDN:

Development:

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

Production:

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

Initialize

HTML:

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

ECMAScript Module:

import Range from "@pluginjs/range"
import "@pluginjs/range/dist/range.css"

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

CommonJS:

require("@pluginjs/range/dist/range.css")
const Range = require("@pluginjs/range")

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

Browser:

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

API

Options

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

Name Description Default
"theme" Set plugin theme option null
"max" Set plugin max option 100
"min" Set plugin min option 0
"value" Set plugin value option null
"step" Set plugin step option 1
"unit" Set plugin unit option null
"defaultUnit" Set plugin defaultUnit option null
"limit" Set plugin limit option true
"isRange" Set plugin isRange option false
"direction" Set plugin direction option h
"keyboard" Set plugin keyboard event true
"tip" Set plugin is tip or not true
"scale" Set plugin is scale or not true
"parse" The type of JSON change the type of object function() {...}
"process" The type of object change the type of JSON function() {...}

Events

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

Name Description
"update" Gets fired when plugin has destroy
"ready" Gets fired when plugin has ready
"enable" Gets fired when plugin has enabled
"disable" Gets fired when plugin has disabled
"destroy" Gets fired when plugin has destroy
"change" Gets fired when plugin has changed
"changeUnit" Gets fired when plugin has changeUnit

Methods

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

Name Description
"val" Set or get value by key
"get" Get value by key
"set" Set value by key
"setInterval" Set value about interval
"enable" Enabled plugin if plugin is disabled
"disable" Disable plugin
"destroy" Destroy plugin

Classes

Name | Description | Default --|| "NAMESPACE" | Declare plugin namespace | pj-range "THEME" | Declare plugin theme | {namespace}--{theme} "WRAP" | Declare plugin wrap | {namespace} "CONTROL" | Declare plugin control | {namespace}-control "DISABLED" | Announce plugin is disabled | {namespace}-disabled "BAR" | Declare plugin bar | {namespace}-bar "POINTER" | Declare plugin pointer | {namespace}-pointer "POINTERACTIVE" | Declare plugin pointer active | {namespace}-pointer-active "SCALE" | Declare plugin scale | {namespace}-scale "LINES" | Declare plugin scale lines | {namespace}-scale-lines "GRID" | Declare plugin scale grid | {namespace}-scale-grid "INLINEGRID" | Declare plugin scale inlineGrid | {namespace}-scale-inlineGrid "VALUES" | Declare plugin scale values | {namespace}-scale-values "SELECTED" | Declare plugin selectd | {namespace}-selected "TIP" | Declare plugin tip | {namespace}-tip "SHOW" | Declare plugin show | {namespace}-tip-show "UNIT" | Declare plugin unit | {namespace}-unit

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/range is Licensed under the GPL-v3 license.

If you want to use @pluginjs/range 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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.8.12
    2
    • latest

Version History

Package Sidebar

Install

npm i @pluginjs/range

Homepage

pluginjs.com

Weekly Downloads

3

Version

0.8.12

License

GPL-3.0

Unpacked Size

143 kB

Total Files

19

Last publish

Collaborators

  • thecreation
  • kaptinlin