Move CV to separate directory

This commit is contained in:
cryobry
2018-06-11 15:05:33 -04:00
parent 211490ae47
commit 3a45f2cb07
102 changed files with 0 additions and 0 deletions

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

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