Info

One of our shows was displayed onto a giant LED screen in Riyadh Boulevard City. More than 80 meters long screen and over 16000 pixels resolution, the largest entertainment area in Riyadh.

Client:

BLVD City – Riyadh Season

Our role:

Concept, Directing, Motion Graphics, 2D, 3D Animation, Sound Design

let touchTimeout; const projectLinks = document.querySelectorAll('.project-item a'); projectLinks.forEach(link => { link.addEventListener('touchstart', function(e) { touchTimeout = setTimeout(() => { link.click(); }, 300); // Kašnjenje pre nego što se otvori stranica, 300ms }); link.addEventListener('touchend', function() { clearTimeout(touchTimeout); // Ako korisnik brzo otpusti, ne otvara se stranica }); });