반응형
원하는 위치로 브라우저 스크롤
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset}, 1000);
바로 스크롤 하지 않고 페이지 로딩끝난 후에 하고 싶다면, setTimeout을 이용하자.
setTimeout(
function(){
$('#a').each(function(){ this.scrollIntoView(true); });
}
,1000);
반응형
'프로그래밍 > Web' 카테고리의 다른 글
[Framework] Semantic UI: A language for sharing UI (0) | 2014.01.09 |
---|---|
Web Developer Checklist: Everything you need to make your code its best (0) | 2014.01.06 |
[HTML] Embed Curl: Embeddable curl commands (0) | 2014.01.03 |
[Framework] Brainy.io: Share Backbone code between server and client (0) | 2013.12.31 |
[Ruby] RubyMotion Query: A jQuery-like library for RubyMotion (0) | 2013.12.27 |