//使用しないスクリプトは消すように! //document.write()は使用しない! // last update 2017.12.08 $(function() { var metaDiscre = document.head.children; var metaLength = metaDiscre.length; if(window.matchMedia("(min-width: 641px)").matches){ for(var i = 0;i < metaLength;i++){ var proper = metaDiscre[i].getAttribute('name'); if(proper === 'viewport'){ var dis = metaDiscre[i]; dis.setAttribute('content','width=870'); } } } else {} }); /* ======================================================== page top btn ======================================================== */ $(function() { var topBtn = $('.ptBt a'); topBtn.click(function () { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); }); /* ======================================================== smooth scroll ======================================================== */ $(function(){ $('a[href^="#"]').click(function() { var speed = 400; var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top; $('body,html').animate({scrollTop:position}, speed, 'swing'); return false; }); }); /* ======================================================== iscroll.js drawer.js ======================================================== */ $(function() { if (window.matchMedia( '(max-width: 1260px)' ).matches) { $.getScript('./js/iscroll.js').done(function(){ $.getScript('./js/drawer.min.js').done(function(){ $('.drawer').drawer(); }); }); } });