New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@baianat/slider

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@baianat/slider

ES6 range slider with gradient color range

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Range slider

ES6 range slider with gradient color range. ES6 range slider extension with gradient color range for Base framework.

Getting Started

Installation

You can install the slider as part of base.extensions.

npm install @baianat/base.extensions

# or using yarn
yarn add @baianat/base.extensions

If you want the standalone version.

npm install @baianat/slider

yarn add @baianat/slider

Include necessary files

<head>
  <link rel="stylesheet" href="dist/css/slider.css">
</head>
<body>
    ...
    <script type="text/javascript" src="dist/js/slider.js"></script>
</body>

HTML Layout

You need an input element to print the output value in it.

<input id="slider-1">

<script>
  let mySlider1 = new Slider('#slider-1', {
    gradient: ['#FFE344', '#38E4B7'],
    min: 0,
    max: 100,
    step: 1,
    value: 60
  });
</script>

You can also add value, min, max and step values using input attributes.

<input id="slider-2"  min="-10" max="10" value="0" step="1">

<script>
  let mySlider2 = new Slider('#slider-2');
</script>

Settings

PROPERTIESDEFAULTDESCRIPTION
gradientnullslider gradient colors array
classesnullclasses to add to range slider
colorCodefalseshow color code instead of value
editablefalsecan input the slider value directly
labeltrueshow/hide value label
min0minimum slider value
max10maximum slider value
step1limit the increments value
value0start value

Methods

You can call method on Slider instance.

const mySlider = new Slider('#slider');
mySlider.selectColor('#ff00ff');
METHODARGUMENTDESCRIPTION
update[Number] value, [Bool] mutechange the slider current value
newGradient[Array] newGradientchange the current slider gradient

License

MIT

Copyright (c) 2017 Baianat

FAQs

Package last updated on 12 May 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc