//↓#へ移動↓ jQuery(function() { jQuery("a[href^=#]").click(function(){ var elmID = jQuery(this).attr("href"); var posi = 0; if(jQuery(elmID).size()){ posi = jQuery(elmID).offset().top -0; BodySlider(posi); return false; } }); function BodySlider(HashOffset){ jQuery("html,body").animate({ scrollTop: HashOffset }, 600); } }); //↓トップへ戻る↓ $(function() { var topBtn = $('#page-top, #cvfix, #link'); topBtn.hide(); //スクロールが200に達したらボタン表示 $(window).scroll(function () { if ($(this).scrollTop() > 200) { topBtn.fadeIn(); } else { topBtn.fadeOut(); } }); }); //↓spスライドショー jQuery(function() { jQuery('.sp_slider').slick({ infinite: true, dots: true, slidesToShow: 1, centerMode: true, //要素を中央寄せ centerPadding:'0', //両サイドの見えている部分のサイズ autoplay:true, //自動再生 responsive: [{ breakpoint: 480, settings: { centerMode: false, } }] }); });