$(document).ready(function(){
	var offset = $(".div").offset(); // div 오프셋 구하기
	var top = offset.top; // 오프셋의 top 구하기
	$("body").animate({scrollTop:top},500); // 해당 위치로 이동
});

$("div").scrollTo({ 옵션 });
$('body, html').animate({ scrollTop: $("#target").offset().top }, 1000); 
http://demos.flesler.com/jquery/scrollTo/
http://demos.flesler.com/jquery/localScroll/
http://demos.flesler.com/jquery/serialScroll/
http://sorgalla.com/jcarousel/examples/

'javascript, jquery' 카테고리의 다른 글

텍스트 롤링(rolling)  (0) 2014.10.03
jquery plugin site  (0) 2014.10.03
ui > rgb slider  (0) 2014.10.03
ui > www.jqueryui.com  (0) 2014.10.03
타이머 - setTimeout  (0) 2014.10.02
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,