青いやつの進捗日記。

メモとしてべんきょうのしんちょくをかいていきます。あとで自分が検索しやすいもん

jQueryで遅延実行したいとき、delayしてqueue

github.com

$("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();
})

のようにやると、遅延実行が出来ます。