//ページ読み込みと同時 jQuery(function($){ var $btn = $('#pageTop'); var isHidden = true; // デフォルトは非表示 $btn.hide(); $(window).scroll(function () { if( $(this).scrollTop() > 300 ) { if( isHidden ) { $btn.stop(true,true).fadeIn(); isHidden = false; } } else { if( !isHidden ) { $btn.stop(true,true).fadeOut(); isHidden = true; } } }); //端末ごとに処理 if(ua()=="mobile"){//スマホ //ページアップ $(window).bind("scroll", function() { //フッターに被らないように scrollHeight = $(document).height(); scrollPosition = $(window).height() + $(window).scrollTop() footHeight = $("footer").height(); // スクロール位置がフッターまで来たら固定(クラス付け) if(scrollHeight - scrollPosition <= footHeight)$($btn).addClass('posi'); else $($btn).removeClass('posi'); }); }else{//PC タブレット } // ページ読み込み完了後 $(window).load(function(){ //ページ内リンクアクション $('a[href^=#]').click(function(){ var speed = 500; var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top; $("html, body").animate({scrollTop:position}, speed, "swing"); return false; }); //youtubeタグを判別してdivで囲む $('iframe').each(function(){ var youtubeURL = 'https://www.youtube.com/'; var iframeSrc = $(this).attr('src'); if(iframeSrc.slice(0,youtubeURL.length) == youtubeURL ){ $(this).wrap('
'); } }); }); }); //以下 function ----------------------------------* //端末判別 function ua(){ var agent = navigator.userAgent; if((navigator.userAgent.indexOf('Android') > 0 && navigator.userAgent.indexOf('Mobile') == -1) || navigator.userAgent.indexOf('iPad') > 0){ return "tb"; }else if(agent.search(/iPhone/) != -1 || agent.search(/iPod/) != -1 || agent.search(/Android/) != -1){ return "mobile"; }else{ return "pc"; } }