%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/counters-box/js/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/counters-box/js/counters-box.js |
/* jQuery CounTo */ (function (a) { a.fn.countTo = function (g) { g = g || {}; return a(this).each(function () { function e(a) { a = b.formatter.call(h, a, b); f.html(a); } var b = a.extend({}, a.fn.countTo.defaults, { from : a(this).data("from"), to : a(this).data("to"), speed : a(this).data("speed"), refreshInterval: a(this).data("refresh-interval"), decimals : a(this).data("decimals") }, g), j = Math.ceil(b.speed / b.refreshInterval), l = (b.to - b.from) / j, h = this, f = a(this), k = 0, c = b.from, d = f.data("countTo") || {}; f.data("countTo", d); d.interval && clearInterval(d.interval); d.interval = setInterval(function () { c += l; k++; e(c); "function" == typeof b.onUpdate && b.onUpdate.call(h, c); k >= j && (f.removeData("countTo"), clearInterval(d.interval), c = b.to, "function" == typeof b.onComplete && b.onComplete.call(h, c)); }, b.refreshInterval); e(c); }); }; a.fn.countTo.defaults = { from : 0, to: 0, speed: 1E3, refreshInterval: 100, decimals: 0, formatter: function (a, e) { return a.toFixed(e.decimals); }, onUpdate: null, onComplete: null }; })(jQuery); jQuery(window).load(function () { if (jQuery().waypoint) { jQuery('.counter-box').waypoint(function () { jQuery(this).find('.display-percentage').each(function () { var percentage = jQuery(this).data('percentage'); jQuery(this).countTo({from: 0, to: percentage, refreshInterval: 40, speed: 1000}); }); }, { triggerOnce: true, offset : 'bottom-in-view' }); } });