Home
About Us
Services
Projects
Contact
Facebook
YouTube
Instagram
Vimeo
Our Location
141 Dacia Blvd, district 2,
Bucharest, Romania
+4 0723 890 261
CLIENTS
Drop us a line!
studio@motionlab.ro
Your Name
Your E-mail
Your Message
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 }); });