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