memo

memo dayo.

jQueryで指定したidの位置までスムーズにスクロールする

// ====================================
function buta_scroll (div_id) {
    var int_top = 0;
	int_top = $('#' + div_id).offset().top;
	int_top = int_top - 30;

	$('body,html').animate({scrollTop:int_top}, 500, 'swing');
}
// ====================================