1.0.2 • Published 4 years ago

sota-vue-circle-slider v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

vue-circle-slider

vue2 build npm npm build

Circle slider component for Vue.js

Table of contents

Installation

npm install --save vue-circle-slider

Adding into app

import Vue from 'vue'
import VueCircleSlider from 'vue-circle-slider'

Vue.use(VueCircleSlider)

Usage

Functionality

  • svg based view
  • binding via v-model
  • defining min & max values
  • defining step size
  • animation while updating to new value on click by circle
  • touch devices support (touchmove)
  • sizes customization: exact and relative definitions
  • colors customization

Examples

Plugin will register a global component with name CircleSlider so you can just use it right away:

...
<circle-slider v-model="sliderValue"></circle-slider>
...

or customize some properties:

...
<circle-slider
  v-model="sliderValue"
  :side="150"
  :min="0"
  :max="10000"
  :step-size="100"
  :circle-width-rel="20"
  :progress-width-rel="10"
  :knob-radius="10"
></circle-slider>
...

Interface

Props

PropsTypeDefaultDescription
sideNumber100size of a side of a svg square in px
min            Number      0the minimum value
maxNumber100the maximum value
stepSizeNumber1the gap between the values
circleColorString#334860color of slider circumference
progressColorString#00be7ecolor of progress curve
knobColorString#00be7eknob color
knobRadiusNumbernullexact knob radius in px
knobRadiusRel  Number      7      relative knob radius. radius value in px will be calculated as (side/2) / knobRadiusRel
circleWidthNumbernullexact width of circle in px
circleWidthRelNumber20relative circle width. width value in px will be calculated as (side/2) / circleWidthRel
progressWidthNumbernullexact progress curve width in px
progressWidthRelNumber10relative progress curve width. width value in px will be calculated as (side/2) / progressWidthRel

Events

NameParamsDescription
touchmovenonefires on touch devices

Slots

There is no any slots available

Demo

TODO

  • add plugin options for defining custom defaults via Vue.use(VueCircleSlider, options)
    • globalComponentBoolean - enable/disable global component registration
    • componentNameString - ability to define custom name for component
    • options with defaults for all props (with same names)
  • add limitMin and limitMax props to limit an accessible slider range

License

MIT