Info

Samsung Developer Conference 2016 – Innovation Track

“The Samsung Developer Conference (SDC) is designed for developers, for creators, for builders. For the curious. For you.”

Brand:

Samsung USA

Our role:

Concept, Directing, Editing, Motion Graphics, Sound Design

Date:

April 2016

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 }); });