Ripple 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>Ripple Effect Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #e0e0e0; font-family: Arial, sans-serif; } .link-ripple-effect { position: relative; display: inline-block; padding: 15px 30px; font-size: 18px; color: #fff; text-decoration: none; background-color: #4caf50; border-radius: 30px; overflow: hidden; transition: all 0.4s ease; } .link-ripple-effect::before { content: ""; position: absolute; top: 50%; left: 50%; width: 300%; height: 300%; background: rgba(255, 255, 255, 0.3); transition: all 0.6s ease; transform: translate(-50%, -50%) scale(0); border-radius: 50%; } .link-ripple-effect:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 0; } </style> </head> <body> <a href="#" class="link-ripple-effect">Ripple Link</a> </body> </html>