$(function() { //--------------------------------------------- // スムーズスクロール //--------------------------------------------- //#を含むリンクが対象 $('a[href^="#"]').click(function(){ var speed = 600, href = $(this).attr("href"), //href="#"ならページトップ(html)へ href="#"以外ならhrefの指定先へ target = $(href == "#" || href=="" ? 'html':href), position = target.offset().top; $('body,html').animate({scrollTop:position},speed,'swing'); return false; }); //--------------------------------------------- // pagetopボタン スクロールでフェードイン //--------------------------------------------- // 300pxスクロールしたらpagetopボタンを表示する var topBtn=$('#PageTop'); topBtn.hide(); $(window).scroll(function() { if($(this).scrollTop() > 300){ topBtn.fadeIn(); } else { topBtn.fadeOut(); } return false; }); //--------------------------------------------- // 本文がグラデーションで消える続きを読むボタン //--------------------------------------------- $(".show_more").click(function() { var show_text = $(this) .parent(".rireki-wrap") .find(".rireki-table"); var small_height = 90; //This is initial height. var original_height = show_text.css({ height: "auto" }).height(); show_text .height(small_height) .animate({ height: original_height }, 300, function() { show_text.height("auto"); }); $(this).hide(); }); });