Web/jquery

[제이쿼리] 스크롤 부드럽게 내려가기

아랄라랄라 2018. 5. 15. 15:00

//부드럽게 올라가기

$(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');

728x90