Get Cash Back on Physics Walla Batches
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Animation</title>
<style>
/* Tech Background Grid */
body {
margin: 0;
overflow: hidden;
background: black;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.grid {
position: absolute;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
rgba(0, 255, 255, 0.1) 0px,
rgba(0, 255, 255, 0.3) 2px,
transparent 3px,
transparent 50px
),
repeating-linear-gradient(
90deg,
rgba(0, 255, 255, 0.1) 0px,
rgba(0, 255, 255, 0.3) 2px,
transparent 3px,
transparent 50px
);
animation: gridMove 5s linear infinite;
}
@keyframes gridMove {
from { background-position: 0 0; }
to { background-position: 50px 50px; }
}
/* 3D Tech Text */
.tech-text {
font-size: 50px;
font-weight: bold;
color: cyan;
text-shadow: 0 0 5px cyan, 0 0 10px cyan, 0 0 20px cyan;
transform-style: preserve-3d;
perspective: 500px;
animation: textGlow 1.5s infinite alternate;
}
@keyframes textGlow {
0% { text-shadow: 0 0 5px cyan, 0 0 10px cyan; }
100% { text-shadow: 0 0 10px cyan, 0 0 20px cyan; }
}
</style>
</head>
<body>
<div class="grid"></div>
<div class="tech-text" id="movingText">TECHNOLOGY</div>
<script>
// JavaScript for Dynamic 3D Effect on Text
document.addEventListener("mousemove", (event) => {
let x = (window.innerWidth / 2 - event.clientX) / 25;
let y = (window.innerHeight / 2 - event.clientY) / 25;
document.getElementById("movingText").style.transform = `rotateY(${x}deg) rotateX(${y}deg)`;
});
</script>
</body>
</html>