You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
683 B
JavaScript

(function ($) {
"use strict";
/*---------------------
Circular Bars - Knob
--------------------- */
if(typeof($.fn.knob) != 'undefined') {
$('.knob').each(function () {
var $this = $(this),
knobVal = $this.attr('data-rel');
$this.knob({
'draw' : function () {
$(this.i).val(this.cv + '%')
}
});
$this.appear(function() {
$({
value: 0
}).animate({
value: knobVal
}, {
duration : 2000,
easing : 'swing',
step : function () {
$this.val(Math.ceil(this.value)).trigger('change');
}
});
}, {accX: 0, accY: -150});
});
}
})(jQuery);