Skip to content

Instantly share code, notes, and snippets.

@devshades-au
Created March 26, 2024 11:49
Show Gist options
  • Save devshades-au/71706001c10227dbb9959b7f7aaaebe5 to your computer and use it in GitHub Desktop.
Save devshades-au/71706001c10227dbb9959b7f7aaaebe5 to your computer and use it in GitHub Desktop.
LYvLaMW
<body class="bg-gray-900 flex justify-center items-center h-screen">
<div class="terminal-window">
<p class="typing"></p>
</div>
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();
/* 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); */
}
<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