/*モーダル ----------------------------------------------------*/ function modalControl(){ var u = new EPOS_CARD.Util(); //タブ切り替え本体 var $elm = $(".js-index-modal"); if($elm.length === 0){ return false; } if(!u.isRangeSP()){ $elm.colorbox({ inline: true, innerWidth: "auto", innerHeight: "auto", maxWidth: "100%", maxHeight: "100%", fixed: true }); } else { $elm.colorbox({ inline: true, width: "98%", innerHeight: "auto", maxHeight: "100%", fixed: true }); } } /*アコーディオン ----------------------------------------------------*/ function accordionControl(){ const $targetBox = $(".accordion-item"); const $targetTrigger = $(".accordion-item_head"); if($targetBox.length === 0 || $targetTrigger.length === 0){ return false; } $targetTrigger.on("click",function(event){ event.preventDefault(); const $self = $(this); const $targetBody = $self.next(".accordion-item_body"); $self.toggleClass("is-open"); $targetBody.stop().slideToggle(); }); } /*init ----------------------------------------------------*/ //DOM Init j$(function(){ modalControl(); accordionControl(); });