- 拖尾动画:移动鼠标时留下渐变轨迹(如星光、线条),类似 “光效拖尾”,适合科幻、游戏类网站。
<script>
document.addEventListener('mousemove', function(e) {
const dot = document.createElement('div');
dot.style.position = 'absolute';
dot.style.width = '5px';
dot.style.height = '5px';
dot.style.background = 'rgba(255,255,255,0.7)'; // 光点颜色
dot.style.borderRadius = '50%';
dot.style.left = e.pageX + 'px';
dot.style.top = e.pageY + 'px';
dot.style.opacity = '0.8';
document.body.appendChild(dot);
setTimeout(() => dot.remove(), 1000); // 1秒后消失
});
</script>
