first commit
This commit is contained in:
commit
16daaa21d7
109 changed files with 22540 additions and 0 deletions
25
static/assets/js/main.js
Normal file
25
static/assets/js/main.js
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
jQuery(document).ready(function($) {
|
||||
|
||||
|
||||
/*======= Skillset *=======*/
|
||||
|
||||
|
||||
$('.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);
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue