Blaze Trail 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>Blaze Trail Cursor</title> <style> body { margin: 0; padding: 0; overflow: hidden; background-color: #000; cursor: none; } .trail { position: absolute; width: 10px; height: 10px; background-color: #ff6347; border-radius: 50%; pointer-events: none; animation: trailAnimation 1.5s infinite; } @keyframes trailAnimation { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } } </style> </head> <body> <script> document.addEventListener('mousemove', (e) => { const trail = document.createElement('div'); trail.className = 'trail'; trail.style.left = `${e.pageX}px`; trail.style.top = `${e.pageY}px`; document.body.appendChild(trail); setTimeout(() => trail.remove(), 1500); }); </script> </body> </html>