Shimmering Wave Cursor - 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>Shimmering Wave Cursor</title> <style> body { margin: 0; overflow: hidden; background: #000; } .wave { position: absolute; width: 15px; height: 15px; background: rgba(0, 255, 255, 0.8); border-radius: 50%; pointer-events: none; box-shadow: 0 0 10px rgba(0, 255, 255, 0.8); animation: wave 1s linear infinite; } @keyframes wave { from { opacity: 1; } to { opacity: 0; } } </style> </head> <body> <script> document.addEventListener('mousemove', function(e) { const wave = document.createElement('div'); wave.className = 'wave'; wave.style.left = `${e.pageX}px`; wave.style.top = `${e.pageY}px`; document.body.appendChild(wave); setTimeout(() => wave.remove(), 1000); }); </script> </body> </html>