Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 826 Bytes

readme.md

File metadata and controls

31 lines (22 loc) · 826 Bytes

Slider

Slider user input.

Slider example

Examples

import { Slider } from "pencil.js";

const position = [100, 200];
const options = {
    min: 0,
    max: 100,
    value: 42
};
const slider = new Slider(position, options);

SliderOptions

Inherit from InputOptions.

Name Type Default Comment
min Number 0 Minimum value when the slider is at lowest
max Number 10 Maximum value when the slider is at highest
value Number 0 Initial value
width Number 200 Size of the slider