All Projects â†’ gregberge â†’ Circular Progress

gregberge / Circular Progress

Licence: mit
🌀 Circular progress widget, dependency-free and configurable.

Programming Languages

javascript
184084 projects - #8 most used programming language

Circular Progress

A JavaScript circular progress widget, dependency-free and configurable.

Example

Example

var progress = new CircularProgress({
  radius: 70,
  strokeStyle: 'black',
  lineCap: 'round',
  lineWidth: 4
});

document.body.appendChild(progress.el);

progress.update(40);

Usage

new CircularProgress( options )

Other attributes are attached to the canvas 2D context.

Options :

  • all 2D context properties.
  • text : Scopped to text, accept value and all 2D context properties.
  • initial : Scopped to initial circle, accept all 2D context properties.

Example :

progress = new CircularProgress({
  lineWidth: 2,
  initial: {
    strokeStyle: 'gray',
    lineWidth: 4
  }
});

// update options
progress.options.text = {
  font: '14px'
};

update( value )

Update percent and draw the canvas, value must be a float between 0 and 100.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].