Glitch Effect Link - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Glitch Effect Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #111; font-family: Arial, sans-serif; } .link-glitch-effect { display: inline-block; padding: 15px 30px; font-size: 18px; color: #fff; text-decoration: none; background-color: #ff5722; border-radius: 30px; position: relative; overflow: hidden; transition: color 0.4s ease; } .link-glitch-effect::before, .link-glitch-effect::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; color: #00e676; clip: rect(0, auto, 0, 0); animation: glitch 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite; } .link-glitch-effect::after { color: #e91e63; animation-delay: 0.15s; } @keyframes glitch { 0% { transform: translate(2px, -2px); } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(-2px, -2px); } 60% { transform: translate(2px, 2px); } 80% { transform: translate(-2px, -2px); } 100% { transform: translate(2px, 2px); } } </style> </head> <body> <a href="#" class="link-glitch-effect" data-text="Glitch Effect Link">Glitch Effect Link</a> </body> </html>