adding /public/ to the mix, pt2

This commit is contained in:
Don Harper 2022-06-05 09:09:00 -05:00
parent 16b7e6391b
commit 1b1f40bf5e
106 changed files with 22261 additions and 0 deletions

25
public/assets/js/main.js Normal file
View 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);
});
});
});