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

@maslick/radiaslider

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maslick/radiaslider

nice looking canvas-based radial and linear slider

1.0.0
Source
npm
Version published
Maintainers
1
Created
Source

=radiaSlider=

a simple pure JavaScript circular/linear knob-style slider

 * works on desktop, mobile and tablets
 * minified ~5 Kb

alt tag alt tag

quickstart

  • create a canvas and the value field
<canvas id="myCanvas" width="300" height="300"></canvas>
<span id="value1"></span>
circular
  • import js
<script src="slider-circular.min.js"></script>
  • initialize a slider
<script>
  var slider = new Slider({canvasId: "myCanvas", continuousMode: true, x0: 150, y0: 150});
  slider.addSlider({
    id: 1,
    radius: 50,
    min: 0,
    max: 30,
    step: 5,
    color: "#104b63",
    changed: function (v) {
      document.getElementById('value1').innerHTML = "Angle: " + v.deg + " deg, value: " + v.value;
    }
  });
</script>
linear
  • import js
<script src="slider-linear.min.js"></script>
  • initialize a slider
<script>
  var slider = new Slider({canvasId: "myCanvas",  continuousMode: true,  vertical: false});
  slider.addSlider({
    id: 1,
    width: 50,
    min: 0,
    max: 30,
    step: 5,
    color: "#104b63",
    changed: function (v) {
      document.getElementById('value1').innerHTML = "Width: " + v.width + " px, value: " + v.value;
    },
    x0: 30,
    y0: 30
  });
</script>
  • if you want to change the value programmatically, use:
slider.setSliderValue(<sliderId>, <value>);

demo

http://maslick.neocities.org/slider-circular/

http://maslick.neocities.org/slider-linear/

Keywords

radial

FAQs

Package last updated on 20 Dec 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