제이쿼리 이부분 어떻게 수정해야할까요??


;(function($) {
 $.fn.gnbmenu = function(options) {
  options = $.extend({
   width:900,
   speed: 500,
   easing: 'easeOutCubic', 
   reset: 2000
  }, options);
  
  return this.each(function() {
   var $nav = $(this),
     $nav_gnb = $(this).find('li'),
     $gnb_img = $('.gnb_img p'),
     $current_item = $(this).find('.focus'),
     $index = 0, $focus_index = 0,
     $autoheight = $('.intro').outerHeight(),
     reset;
   $('#container').css('height',$autoheight);
   $nav_gnb.bind('mouseover focusin', function() {
    $index = $(this).index();
    clearTimeout(reset);
    $gnb_img.animate({
     left: $(this).position().left,
     width: $(this).outerWidth()
    }, {
     duration: options.speed,
     easing: options.easing,
     queue: false
    });
   })
   .bind('mouseover focusin', function() {
    reset = setTimeout(function() {
     $gnb_img.animate({
      left: $current_item.position().left,
      width: $current_item.outerWidth()     
     }, options.speed);
    }, options.reset);
   })
   .click(function(){
    $(this)
     .siblings().removeClass('focus')
     .end().addClass('focus');
    $current_item = $(this);    
    $focus_index = $(this).index();
    if($focus_index == 0){
     $('#wrap').addClass('none');
    }else{
     $('#wrap').removeClass('none');
    }
    $autoheight = $('.contents>div:eq('+ $focus_index +')').outerHeight();
    $('#container').stop().animate({'height':$autoheight},options.speed)
    $('.contents').stop().animate({'left':- options.width * $focus_index
    },options.speed,options.easing);
   })
   $('#header h1').click(function(){
    clicklink(0);
   });
   $('.int>#sol01').click(function(){
    clicklink(3);
   });
   
   
   function clicklink(a){
    $('.focus').removeClass('focus');
    if(a == 0){
     $('#wrap').addClass('none');
    }else{
     $('#wrap').removeClass('none');
    }
    $current_item = $nav.find('li:eq(' + a + ')').addClass('focus');
    $autoheight = $('.contents>div:eq(' + a + ')').outerHeight();
    $('.contents').stop().animate({'left':- options.width * a},options.speed);
    $('#container').stop().animate({'height':$autoheight},options.speed);
    clearTimeout(reset);
    reset = setTimeout(function() {
     $gnb_img.animate({
      left: $current_item.position().left,
      width: $current_item.outerWidth()     
     }, options.speed);
    }, 100);
   };
  });
 }
})(jQuery);

이 쿼리를 해상도가 1024이상일때만 (데스크탑) 실행되게 하려면 어떻게 소스를 수정해야할까요??
|

댓글 1개

if statement 만 하나 넣어주시면 되잖아요.

if (screen.width >= 1024) {
메뉴실행
}

아니면 서버쪽에서 (php 에서) 브라우져 agent detect 하셔서 데스크탑인 경우에만 위 jQuery 를 load 하게 하셔도 되고.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
11년 전 조회 3,171
11년 전 조회 3,500
11년 전 조회 2,720
11년 전 조회 2,934
11년 전 조회 2,888
11년 전 조회 2,986
11년 전 조회 3,502
11년 전 조회 3,108
11년 전 조회 3,087
11년 전 조회 7,610
11년 전 조회 3,138
11년 전 조회 3,256
11년 전 조회 3,293
11년 전 조회 3,441
11년 전 조회 3,808
11년 전 조회 5,393
11년 전 조회 3,790
11년 전 조회 2,595
11년 전 조회 2,404
11년 전 조회 2,531
11년 전 조회 2,626
11년 전 조회 2,894
11년 전 조회 1.7만
11년 전 조회 2,971
11년 전 조회 2,126
11년 전 조회 2,172
11년 전 조회 2,430
11년 전 조회 4,701
11년 전 조회 2,509
11년 전 조회 2,276
11년 전 조회 2,336
11년 전 조회 2,191
11년 전 조회 2,330
11년 전 조회 3,140
11년 전 조회 2,118
11년 전 조회 2,531
11년 전 조회 3,194
11년 전 조회 2,091
11년 전 조회 2,890
11년 전 조회 2,231
11년 전 조회 2,374
11년 전 조회 2,854
11년 전 조회 3,139
11년 전 조회 2,075
11년 전 조회 2,686
11년 전 조회 2,024
11년 전 조회 5,161
11년 전 조회 2,618
11년 전 조회 2,842
11년 전 조회 2,633
11년 전 조회 2,084
11년 전 조회 2,206
11년 전 조회 2,107
11년 전 조회 6,590
11년 전 조회 2,087
12년 전 조회 2,067
12년 전 조회 4,508
12년 전 조회 2,379
12년 전 조회 5,925
12년 전 조회 3,289
12년 전 조회 4,100
12년 전 조회 2,052
12년 전 조회 2,056
12년 전 조회 2,914
12년 전 조회 2,111
12년 전 조회 3,053
12년 전 조회 3,020
12년 전 조회 5,931
12년 전 조회 2,410
12년 전 조회 3,544
12년 전 조회 2,789
12년 전 조회 2,863
12년 전 조회 2,939
12년 전 조회 2,189
12년 전 조회 3,012
12년 전 조회 1,865
12년 전 조회 5,164
12년 전 조회 3,233
12년 전 조회 3,072
12년 전 조회 2,682
12년 전 조회 8,182
12년 전 조회 2,630
12년 전 조회 2,258
12년 전 조회 3,739
12년 전 조회 3,061
12년 전 조회 2,182
12년 전 조회 2,580
12년 전 조회 3,939
12년 전 조회 3,341
12년 전 조회 3,164
12년 전 조회 3,455
12년 전 조회 3,731
12년 전 조회 4,483
12년 전 조회 4,067
12년 전 조회 4,156
12년 전 조회 4,841
12년 전 조회 4,645
12년 전 조회 2,013
12년 전 조회 5,515
12년 전 조회 6,569