Created
March 26, 2024 11:54
-
-
Save devshades-au/93dfa855fd4cd638c2c64c761ec55947 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> | |
</body> |
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
document.addEventListener('DOMContentLoaded', function () { | |
const text = "Welcome to the Matrix Simulation..."; | |
const typingElement = document.querySelector('.typing'); | |
function typeEffect() { | |
let i = 0; | |
const typingInterval = setInterval(() => { | |
typingElement.textContent += text[i]; | |
i++; | |
if (i === text.length) { | |
clearInterval(typingInterval); | |
} | |
}, 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
.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