mailcontacto@trackchain.io
phone81 24747571

Simplifica tu Logística

Optimiza tu logística con software, servicios financieros, datos y acceso a transportistas de confianza 24/7.

Con el apoyo de

Y Combinator
/* Container */ .truck-container { position: relative; width: 100%; height: 200px; } /* Truck */ .truck { position: absolute; width: 100px; height: 50px; background-color: #3498db; border-radius: 10px; animation-name: move-truck; animation-duration: 4s; animation-timing-function: linear; animation-iteration-count: infinite; } /* Truck animation */ @keyframes move-truck { 0% { left: -100px; } 50% { left: 50%; } 100% { left: 100%; } }