JAVASCRIPT/JQuery

메뉴 클릭시 해당 영역으로 이동되도록

kimjiwon506 2023. 4. 10. 15:24
  let offsets = [];
  $(window).load(function(){
    $.each($(".offset_wrap"), function(){
      offsets.push($(this).offset().top);
    });
  });

  $('.offset_wrap a').mouseenter( function() {
    $(this).addClass('on');
  });
  $('.offset_wrap a').mouseleave(function() {
    $(this).removeClass('on');
  });

  $(".main_link_box ul li a").on('click', function(){
    $('html, body').animate({scrollTop: offsets[$(this).parent().index()] - 150}, 200);
  });

  $(document).ready(function(){
    listRoll();
  });

  function listRoll() {
    $(".offset_wrap").each(function(index, el){
      if($(this).find('.list').lnegth !== 0){
        console.log(el);
        var ticker = function()
        {
          timer = setTimeout(function(){
            TweenMax.to($(el).find('.list li:first'), 0.4, {marginTop:'-40px', onComplete: function(item){
              $(el).find('.list li:first').detach().appendTo($(el).find('.list')).removeAttr('style');
            }});
            ticker();
          }, 2000);
        };
        ticker();
      }
    });
  }