Created
March 26, 2024 11:49
-
-
Save devshades-au/71706001c10227dbb9959b7f7aaaebe5 to your computer and use it in GitHub Desktop.
LYvLaMW
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body class="bg-gray-900 flex justify-center items-center h-screen"> | |
<div class="terminal-window"> | |
<p class="typing"></p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const text = "DEVSHADES | DevOps Engineer | Cloud Solutions | Software Development\n\nE) [email protected]".split(""); | |
const typingElement = document.querySelector(".typing"); | |
function typeEffect() { | |
if (text.length > 0) { | |
typingElement.innerHTML += text.shift(); | |
setTimeout(typeEffect, Math.floor(Math.random() * 200) + 50); | |
} | |
} | |
typeEffect(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Custom styles */ | |
.terminal-window { | |
/* background-color: #000; */ | |
color: #00FF00; | |
font-family: 'Courier New', monospace; | |
overflow: hidden; | |
white-space: pre; | |
font-size: 1.2rem; | |
padding: 20px; | |
/* border-radius: 5px; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment