$(function(){ /**/ /* smooth scroll */ $('a[href^="#"]').click(function() { var speed = 400; var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top; if(href.indexOf('pageTop') == -1){ position = position - 90; //目次移動 } $('body,html').animate({scrollTop:position}, speed, 'swing'); return false; }); /* navigation */ $('#js-buttonMenu').on('click', function(){ $(this).parents('#js-blockMenu').toggleClass('isActive'); $('#js-menuItems').slideToggle(); $('#js-buttonMenu').toggleClass('isActive'); }); /* $('a[href$="#platform"]').click(function() {//プラットフォームページ内で#platformをクリックしたとき用 $(this).parents('#js-blockMenu').toggleClass('isActive'); $('#js-menuItems').slideToggle(); $('#js-buttonMenu').toggleClass('isActive'); }); */ /* top slide */ $('.js-slidePanels').slick({ autoplaySpeed: 5000, arrows: false, dots: true, autoplay: true, fade: true, }); /* object fit for IE */ objectFitImages(); /**/ }); /* スマホナビゲーション操作後PCサイズにウィンドウを広げるとナビゲーションが表示されないため、幅リサイズ時リロード */ var $windowWidth = $(window).width(); $(window).on('resize', function(){ var $windowWidthResize = $(window).width(); //if($windowWidth !== $windowWidthResize) { if($windowWidth >= 1000 && $windowWidthResize < 1000) { window.location = window.location; }else if($windowWidth <= 1000 && $windowWidthResize > 1000){ window.location = window.location; }else{ return false; } }); /* postページの目次生成 ページ内の

を取得して #js-mokuji に生成出力させる */ $('h2.title003').length; mokuji_target = $('h2.title003').text(); var list_html=""; for(i=0; i<$('h2.title003').length; i++){ $('h2.title003').eq(i).attr('id','mokujiNo'+i); list_html += '
  • '+$('h2.title003').eq(i).text()+'
  • '; } $('#js-mokuji ol').html(list_html);