moved orbit in from submodule

This commit is contained in:
Don Harper 2021-01-30 09:53:57 -06:00
parent 19da32c6dc
commit 6e9ed98e78
227 changed files with 44365 additions and 0 deletions

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);
});
});
});

View file

@ -0,0 +1 @@
jQuery(document).ready(function($){$(".level-bar-inner").css("width","0"),$(window).on("load",function(){$(".level-bar-inner").each(function(){var n=$(this).data("level");$(this).animate({width:n},800)})})});