Initial website design

This commit is contained in:
2024-02-23 23:28:44 -03:00
parent d3504a7033
commit 536f2bd9a8
22 changed files with 19398 additions and 6 deletions

27
assets/home.js Normal file
View File

@@ -0,0 +1,27 @@
$(function() {
/* NOTE: hard-refresh the browser once you've updated this */
$(".typed").typed({
strings: [
"stat carlosmartino<br/> ^500" +
"><span class='caret'>$</span> Resume: <a href='./assets/CarlosMartino.pdf' download='CarlosMartino'>CarlosMartino.pdf</a><br/> ^100" +
"><span class='caret'>$</span> Job: " + description + "<br/> ^100" +
"><span class='caret'>$</span> Skills: Native Mobile Development, DevOps, Leadership<br/> ^100" +
"><span class='caret'>$</span> Hobbies: Karting, Home Improvement<br/> ^100" +
"><span class='caret'>$</span> Alias: imcarlost<br/> ^100"
],
showCursor: true,
cursorChar: '|',
autoInsertCss: true,
typeSpeed: 0.001,
startDelay: 5,
loop: false,
showCursor: true,
onStart: $('.message form').hide(),
onStop: $('.message form').show(),
onTypingResumed: $('.message form').hide(),
onTypingPaused: $('.message form').show(),
onComplete: $('.message form').show(),
onStringTyped: function(pos, self) {$('.message form').show();},
});
$('.message form').hide()
});