JSFiddle - React, Tailwind, and code Playground
HTML
<div id="services-row">
<img src="http://placehold.it/150x150">
<img src="http://placehold.it/250x150">
<img src="http://placehold.it/150x250">
</div>
CSS
#services-row img {
transform: translateX(-10000px) translateY(-10000px);
transition: transform 1s;
}
JavaScript
var serviceIcons = $('#services-row img');
for(var k = 0, n = serviceIcons.length; k < n; ++k) {
setTimeout(
function(k) {
return function() {
$(serviceIcons[k]).css('transform', 'none');
}
}(k), k * 50
);
}