countTo.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. $(document).ready(function (){
  2. var win = $(window).height();
  3. var height = $('.counter').offset().top;
  4. var Counter = 1;
  5. $(window).scroll(function () {
  6. if($(document).scrollTop() < (height-win+100) && Counter==1){
  7. $('.counter').each(function(){
  8. var dataperc = $(this).attr('data-perc');
  9. $(this).delay(5000).countTo({
  10. from: 0,
  11. to: dataperc,
  12. speed: 5000,
  13. refreshInterval: 100
  14. });
  15. Counter = 0;
  16. });
  17. }
  18. });
  19. });
  20. $.fn.countTo = function(options) {
  21. // merge the default plugin settings with the custom options
  22. options = $.extend({}, $.fn.countTo.defaults, options || {});
  23. // how many times to update the value, and how much to increment the value on each update
  24. var loops = Math.ceil(options.speed / options.refreshInterval),
  25. increment = (options.to - options.from) / loops;
  26. return $(this).delay(1000).each(function() {
  27. var _this = this,
  28. loopCount = 0,
  29. value = options.from,
  30. interval = setInterval(updateTimer, options.refreshInterval);
  31. function updateTimer() {
  32. value += increment;
  33. loopCount++;
  34. $(_this).html(value.toFixed(options.decimals));
  35. if (typeof(options.onUpdate) == 'function') {
  36. options.onUpdate.call(_this, value);
  37. }
  38. if (loopCount >= loops) {
  39. clearInterval(interval);
  40. value = options.to;
  41. if (typeof(options.onComplete) == 'function') {
  42. options.onComplete.call(_this, value);
  43. }
  44. }
  45. }
  46. });
  47. };
  48. $.fn.countTo.defaults = {
  49. from: 0, // the number the element should start at
  50. to: 100, // the number the element should end at
  51. speed: 1000, // how long it should take to count between the target numbers
  52. refreshInterval: 100, //how often the element should be updated
  53. decimals: 0, //the number of decimal places to show
  54. onUpdate: null, //callback method for every time the element is updated,
  55. onComplete: null,//callback method for when the element finishes updating
  56. };