$("img.js-top-img:nth-of-type(1), img.js-top-img:nth-of-type(2), img.js-top-img:nth-of-type(3), img.js-top-img:nth-of-type(4), img.js-top-img:nth-of-type(5)").delay(delayNum).queue(function () { // スライド $("img.js-top-img:nth-of-type(1), img.js-top-img:nth-of-type(2), img.js-top-img:nth-of-type(3)").css({ "transform": "translateX(-" + imgTopWidth * 0 + "px)" }).dequeue(); $("img.js-top-img:nth-of-type(4), img.js-top-img:nth-of-type(5)").css({ "transform": "translateX(-" + imgTopWidth * 5 + "px)" }).dequeue(); })
のようにやると、遅延実行が出来ます。