123456789101112131415161718192021 |
- jQuery(document).ready(function($) {
- $('.level-bar-inner').css('width', '0');
-
- $(window).on('load', function() {
- $('.level-bar-inner').each(function() {
-
- var itemWidth = $(this).data('level');
-
- $(this).animate({
- width: itemWidth
- }, 800);
-
- });
- });
-
-
- });
|