/** * ========================================================================== * * [content] * * ========================================================================== */ /** * メニュー開閉 */ var openFlg = false; (function($) { $(function() { $("#menuBt").click(function() { if (!openFlg) { $("#menuList").stop().show(); $("#menuBt img").attr("src", "/-/media/cojp/product/labelwriter/special/cube/img/global/menubt_close.png"); openFlg = true; } else { $("#menuList").stop().hide(); $("#menuBt img").attr("src", "/-/media/cojp/product/labelwriter/special/cube/img/global/menubt.png"); openFlg = false; } }); }); }(jQuery)); (function($) { $(function() { var headerHight = 177; //ヘッダの高さ $('a[href^=#]').click(function(){ var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top-headerHight; //ヘッダの高さ分位置をずらす $("html, body").animate({scrollTop:position}, 200, "swing"); $("#menuList").stop().hide(); $("#menuBt img").attr("src", "/-/media/cojp/product/labelwriter/special/cube/img/global/menubt.png"); openFlg = false; return false; }); }); }(jQuery));