statistic.js 319 B

123456789101112131415161718192021
  1. //[Javascript]
  2. $(function () {
  3. "use strict";
  4. $('.countnm').each(function () {
  5. $(this).prop('Counter',0).animate({
  6. Counter: $(this).text()
  7. }, {
  8. duration: 5000,
  9. easing: 'swing',
  10. step: function (now) {
  11. $(this).text(Math.ceil(now));
  12. }
  13. });
  14. });
  15. }); // End of use strict