//関連サイトのアコーディオン $(function () { $(".asahi-related-site__hdg-tgl").on("click", function () { console.log("adsdadsdaads"); if ($(this).next().is(".hidden")) { $(this).next().slideDown("100"); $(this).next().removeClass("hidden"); $(this).toggleClass("panel-open"); } else { $(this).next().slideUp("100"); $(this).next().toggleClass("hidden"); $(this).removeClass("panel-open"); } }); }); //メインビジュアル_読み込み時にクラス追加 $(window).on("load", function () { $(".main").addClass("active"); }); //story_可視範囲に入ったらクラス追加 $(window).on("scroll load", function () { var scrollY = $(window).scrollTop(); var elTop = $("section.story .story_list").offset().top; var elPosition = elTop - $(window).height(); var elBottom = elTop + $("section.story .story_list").height(); if (scrollY > elPosition + 80 && scrollY < elBottom) { $("section.story .story_list").addClass("active"); } else { $("section.story .story_list").removeClass("active"); } }); //モーダル $(function () { $(".modal_open").each(function () { $(document).on("click", ".modal_open", function () { var target = $(this).data("target"); var modal = document.getElementById(target); $(modal).addClass("show"); return false; }); }); $(document).on("click", ".modal_close", function () { $(".modal").removeClass("show"); return false; }); });