// JavaScript Document /* smoothsccroll */ $(function(){ $().smoothscroll({ btnMode : 'slide', btnCourse : 'bottom', autoAdjust : true, adaptiveElement : 'header',/* manualAdjust: 30,*/ btnAdvent : 100, btnSpeed : 500, pageJumpScroll : true, wrapHeightCtrl : true }); /* ハンバーガーメニューをオートで閉じる処理 */ $('.nav a').on('click.amc', function(){ if($(this).hasClass("dropdown-toggle")) { console.log('no use - auto close menu'); } else if( $("#navbar").hasClass("in") ) { // ナビ展開中のみ、ハンバーガーボタンをオートクリックする $(".navbar-toggle").click(); } }); $(window).on('load.ahc resize.ahc scroll.ahc', function(){ if( $("#navbar").hasClass("in") == false ) { // ナビ収納中は、ナビ容器の高さを制御する $('header').css('height',$('.inner_header').outerHeight()); } }); $(window).on('load.ahc resize.ahc scroll.ahc', function(){ if( $(window).width() < 768 ) { $(".slider img").css("width" , $(window).width()+'px'); } else { $(".slider img").css("width" , ""); } }); $(window).on('load resize', function(){ /* 要素のheight値を合わせるjQuery */ $('.area0 div.fl_left,.area0 div.fl_right').matchHeight(); $('.inner_contact_area dt, .inner_contact_area dd').matchHeight(); /* $('.megamenu .dropdown-menu ul li').matchHeight();*/ }); /* SP MODE MENU HEIGHT CONTROL */ $(window).on('load resize',function(){ /* code area */ testcode = {}; testcode.windowheight = $(window).height(); testcode.headerheight = $('header').outerHeight(); testcode.navheight = $('nav').outerHeight(); $('nav').css('max-height', testcode.windowheight , 'overflow-y'); return this; }); }); /* mega-dropdown menu - toggle mode */ $(function() { $('.dropdown-toggle').click(function() { var w = $(window).width(); if (w > 767) { var location = $(this).attr('href'); window.location.href = location; return this; } }); });