cvalleskey / circle

A jQuery plugin that uses the <canvas> tag

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Circle

A simple, lightweight solution for displaying progress bars in a circular fashion.

Features

  • Color options
  • Set the size of the ring

Quickstart

// Init
$('#progress').circle();

//  Set options
$('#progress').circle("update", {
    //  Options
});

//  Destroy
$('#progress').circle("destroy");

Options

{
	fillStyle: "#FFF", // Color of the circle
	strokeStyle: "#DC2F64", // Color of the loaded portion
	lineWidth: 10, // Width of the ring
	value: 0, // 0-1
	fade: false // If the ring should expand on start
}

About

A jQuery plugin that uses the <canvas> tag


Languages

Language:JavaScript 100.0%