Presented by

Artwork developed from original sketches by Joe Young. Final illustration by Davide Gentile. Color design by Mirco Maiorano. The development of this exhibit was made possible by the America250 Creation of New Work Grant from the Roberts Foundation for the Arts.
@media (max-width: 1024px) {
#cursor-follower {
display: none !important;
}
}
(function() {
if (
window.innerWidth < 1025 ||
/Android|iPhone|iPad|iPod|Mobile|Instagram|FBAN|FBAV/i.test(navigator.userAgent)
) {
var mobileFollower = document.getElementById(‘cursor-follower’);
if (mobileFollower) {
mobileFollower.remove();
}
return;
}
var follower = document.getElementById(‘cursor-follower’);
if (!follower) return;
follower.style.display = ‘block’;
follower.style.position = ‘fixed’;
follower.style.width = ‘180px’;
follower.style.height = ‘auto’;
follower.style.pointerEvents = ‘none’;
follower.style.zIndex = ‘999999’;
follower.style.transform = ‘translate(-50%, -50%)’;
follower.style.opacity = ‘0.9’;
var mouseX = window.innerWidth / 2;
var mouseY = window.innerHeight / 2;
var currentX = mouseX;
var currentY = mouseY;
document.addEventListener(‘mousemove’, function(e) {
mouseX = e.clientX;
mouseY = e.clientY;
});
function animate() {
currentX += (mouseX – currentX) * 0.05;
currentY += (mouseY – currentY) * 0.05;
follower.style.left = currentX + ‘px’;
follower.style.top = currentY + ‘px’;
requestAnimationFrame(animate);
}
animate();
})();