no message

This commit is contained in:
RedGadgets
2016-07-29 10:17:42 +05:30
parent 275560078a
commit 0582efcd41
114 changed files with 22192 additions and 0 deletions

21
assets/js/main.js Normal file
View File

@@ -0,0 +1,21 @@
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);
});
});
});