Untitled
unknown
plain_text
9 months ago
2.6 kB
5
Indexable
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PULSE WIRE Fire Effect</title>
<style>
@keyframes flicker {
0% { opacity: 1; }
50% { opacity: 0.8; }
100% { opacity: 1; }
}@keyframes fire {
0% { text-shadow: 0 0 10px #ff4500, 0 0 20px #ff6347, 0 0 30px #ff4500; }
50% { text-shadow: 0 0 20px #ff6347, 0 0 30px #ff4500, 0 0 40px #ff6347; }
100% { text-shadow: 0 0 10px #ff4500, 0 0 20px #ff6347, 0 0 30px #ff4500; }
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: black;
color: white;
font-family: Arial, sans-serif;
}
.fire-text {
font-size: 4rem;
font-weight: bold;
text-transform: uppercase;
animation: fire 1.5s infinite alternate, flicker 0.1s infinite;
color: #ff4500;
}
</style>
</head>
<body>
<div class="fire-text">PULSE WIRE</div>
</body>
</html>
Editor is loading...
Leave a Comment