summaryrefslogtreecommitdiff
path: root/assets/js/resume.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/resume.js')
-rw-r--r--assets/js/resume.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/assets/js/resume.js b/assets/js/resume.js
new file mode 100644
index 0000000..1512413
--- /dev/null
+++ b/assets/js/resume.js
@@ -0,0 +1,14 @@
+$(document).ready(function() {
+ $(".percentage > div").each(function () {
+ $(this).css("visibility", "hidden");
+ });
+
+ $(".percentage > div").each(function () {
+ var width = $(this).width();
+ $(this).width(0);
+ $(this).css("visibility", "visible");
+ $(this).animate({
+ width: width + "px"
+ }, 1500 );
+ });
+}); \ No newline at end of file