/** * * スクロールライブラリ * 2014.05.20 T.Shinohara * ver 1.0 * */ jQuery(function($){ var defaults={ speed:600, animation: 'linear' }; $.fn.extend({ pageScroll:function(option, event){ var target = $(this).attr('href'); if($(target).size() > 0){ event.preventDefault(); var position = $(target).offset().top; $('body, html').animate({scrollTop:position}, option.speed, option.animation); } } }); $("a[href^=#] , area[data-scroll='true']").not("a[href='#']").click(function(event){ $(this).pageScroll(defaults, event); }); });