Skip to content

WisaniShilumani/jquery.polartimer.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 

Repository files navigation

polartimer.js

Polartimer is a circular progress widget supporting basic options and a callback function.

Dependencies

Usage Example

Include dependencies

<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="snap.svg-min.js"></script>
<script type="text/javascript" src="jquery.polartimer.min.js"></script>

Or you can use the legacy SVG library Raphael.

<script type="text/javascript" src="raphael-min.js"></script>

Markup

<div id="demoTimer"></div>

CSS

#demoTimer { width: 150px; }

Javascript

// create the timer
$('#demoTimer').polartimer({
  timerSeconds: 6,
  color: '#F00',
  opacity: 0.7,
  callback: function () {
    alert('jquery.polartimer.js: done!');
  }
});

// start the timer
$('#demoTimer').polartimer('start');

Options

  • timerSeconds: The amount of time in seconds between starting this timer and its completion. (Default: 10)
  • color: Fill color for the animated progress circle. (Default: "#CCC")
  • opacity: Opacity of the animated progress circle. (Default: 1)
  • callback: A function to invoke when the timer completes. (Default: function() {})

Note: the SVG canvas gets its width and height from the rendered width of the element polartimer() is invoked on. Easy to change!

Methods

  • init: Creates the timer state and its backing SVG canvas. This method may take as an argument an object containing options which override the default settings.

    $('#myElem').polartimer();           // Initialize a timer with default settings
    $('#myElem').polartimer([options]);  // or pass an object, overriding some settings
  • start: Starts the timer. The timer must be created with a call to init first. Optionally pass a percentage to start at.

    $('#myElem').polartimer('start');
    $('#myElem').polartimer('start', 25); // Start as if 25% of the time has already elapsed.
  • pause: Pauses the running timer. The timer must be created with a call to init first.

    $('#myElem').polartimer('pause');
  • resume: Resumes the timer, once paused. The timer must be created with a call to init first.

    $('#myElem').polartimer('resume');
  • reset: Resets the timer the initial position, stops the animation, and cancels the callback timeout. The timer must be created with a call to init first.

    $('#myElem').polartimer('reset');
  • destroy: Completely removes all data related to the timer as well as the SVG canvas element from the DOM. The timer may not be used again after this call, as it is destructive. Therefore for subsequent use, a new timer must be created with a call to init.

    $('#myElem').polartimer('destroy');

License

Creative Commons license logo

polartimer jQuery plugin by Connor Doyle is licensed under a Creative Commons Attribution 3.0 Unported License. Based in part on a work at http://blakek.us/css3-pie-graph-timer-with-jquery/.

About

Polartimer is a circular progress widget supporting basic options and a callback function.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%