Cursor Follower
Move your cursor around to see the custom cursor effects. Hover over different areas to see magnetic interactions.
Magnetic Zone
Elements follow cursor
Interactive Area
Hover effects enhanced
Dynamic Response
Smooth animations
GSAP Powered
Performance optimized
// Custom cursor with GSAP
document.addEventListener('mousemove', (e) => {
gsap.to('.cursor-follower', {
x: e.clientX,
y: e.clientY,
duration: 0.1,
ease: 'power2.out'
});
});