Infernal 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>Infernal Cursor</title> <style> body { margin: 0; padding: 0; overflow: hidden; background-color: #000; cursor: none; } .infernal { position: absolute; width: 12px; height: 12px; background-color: #ff4500; border-radius: 50%; pointer-events: none; box-shadow: 0 0 15px #ff4500, 0 0 30px #ff4500; animation: infernalAnimation 1.5s infinite; } @keyframes infernalAnimation { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } } </style> </head> <body> <div class="infernal" id="cursor"></div> <script> document.addEventListener('mousemove', (e) => { const cursor = document.getElementById('cursor'); cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; }); </script> </body> </html>