//부드럽게 올라가기
$(function(){
$(".event_up").click( function() {
$("html, body").animate( { scrollTop : 0 }, 350 );
return false;
} );
});
// 앵커 부드럽게 내려가기
$('a').click(function(){
$('html, body').animate({scrollTop: $( $.attr(this, 'href') ).offset().top}, 500);
return false;
});
// 앵커 부드럽게 내려가기
$('a').on('click', function(event){
event.preventDefault();
var fixedHeight = $('.nav_wrap').height(); // 상단 고정 메뉴
$('html,body').animate({scrollTop:$( $(this).attr('href') ).offset().top - fixedHeight}, 600, 'linear');
});
// 앵커 부드럽게 내려가기
$('a').on('click', function(e){
e.preventDefault();
$('html,body').animate({scrollTop:$( $(this).attr('href') ).offset().top}, 400, 'linear');
});
// iframe 안에서 부드럽게 $(window.parent.document)
var a01_height = $(window.parent.document).find('header').height();
var a02_height = $(window.parent.document).find('.gnb_2depth').height();
var a03_height = $(window.parent.document).find('.event_tit').height() + 60;
var top_height = a01_height + a02_height + a03_height;
$('html, body', window.parent.document).animate({scrollTop:$( $(this).attr('href') ).offset().top + top_height }, 'slow');
'Web > jquery' 카테고리의 다른 글
[AJAX] ajax에서 jquery찾기 (0) | 2018.05.15 |
---|---|
[AJAX] ajax기본 (0) | 2018.05.15 |
[제이쿼리] iframe에서 부모 접근 컨트롤 (0) | 2018.05.15 |
[제이쿼리] fading / sliding / this (0) | 2018.05.15 |
[제이쿼리] 스크롤, 위치 값 구하기 (0) | 2018.05.15 |