main.js 379 B

123456789101112131415161718192021
  1. jQuery(document).ready(function($) {
  2. $('.level-bar-inner').css('width', '0');
  3. $(window).on('load', function() {
  4. $('.level-bar-inner').each(function() {
  5. var itemWidth = $(this).data('level');
  6. $(this).animate({
  7. width: itemWidth
  8. }, 800);
  9. });
  10. });
  11. });