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