/********************************************* * epospoint.js *********************************************/ $(function(){ // 別ページからのタブ遷移 var hash = location.hash; hash = hash.split(/[?&]/)[0]; $hash = (hash.match(/^#tab\d+$/) || [])[0]; var tabHight = $(".tabLayout01").offset().top; // function if($hash === "#tab02"){ $(".tabLayout01 .tabHead01").removeClass("active"); $(".tabLayout01 .tabHead02").addClass("active"); $("#tab01").hide(); $("#tab02").show(); $("body,html").animate({ scrollTop: tabHight }); }else if($hash === "#tab01"){ $(".tabLayout01 .tabHead01").addClass("active"); $(".tabLayout01 .tabHead02").removeClass("active"); $("#tab01").show(); $("#tab02").hide(); $("body,html").animate({ scrollTop: tabHight }); }else{ $(".tabLayout01 .tabHead01").addClass("active"); $(".tabLayout01 .tabHead02").removeClass("active"); $("#tab01").show(); $("#tab02").hide(); } });