$(window).load(function () { mvdisp(); $(".smartlife .mv .box h2 .btn").click(function () { $(this).parent().parent().parent().toggleClass('active'); $(this).parent().parent().next().slideToggle(200); mvdisp(); }); function mvdisp() { $('.smartlife .mv .box .toggle p').removeClass('in') //順番にClass付与 var $targets = $('.smartlife .mv .box.active .toggle p'); var delay = 800; $targets.each(function (i) { var $this = $(this); $this.delay(i * delay).queue(function (next) { $this.addClass('in'); next(); }); }); } });