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

· 2014-03-25 (화) 13:16:51 · 3741 · 1

;(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 하게 하셔도 되고.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
14-08-26 조회 3,368
14-08-26 조회 3,525
14-08-26 조회 4,081
14-08-26 조회 3,445
14-08-26 조회 3,688
14-08-26 조회 3,621
14-08-26 조회 3,389
14-08-26 조회 3,430
14-08-26 조회 3,451
14-08-26 조회 3,484
14-08-25 조회 4,005
14-08-16 조회 4,140
14-08-12 조회 4,029
14-08-05 조회 3,799
14-08-04 조회 4,550
14-08-04 조회 3,905
14-08-01 조회 4,955
14-07-29 조회 4,092
14-07-10 조회 3,976
14-07-08 조회 4,627
14-07-08 조회 4,195
14-07-05 조회 3,793
14-05-26 조회 5,320
14-05-26 조회 4,017
14-05-21 조회 4,470
14-05-19 조회 7,414
14-05-17 조회 6,635
14-04-30 조회 7,071
14-04-27 조회 4,467
14-04-26 조회 4,665
14-04-13 조회 4,803
14-04-13 조회 4,053
14-03-25 조회 6,407
14-03-25 조회 4,029
14-03-12 조회 3,843
14-03-12 조회 5,258
14-02-24 조회 4,556
13-12-27 조회 3,888
13-11-18 조회 4,221
13-11-18 조회 6,523
13-10-17 조회 4,534
13-10-03 조회 6,203
13-10-02 조회 4,079
13-09-29 조회 4,558
13-09-29 조회 3,942
13-09-17 조회 3,747
13-09-11 조회 5,933
13-09-09 조회 4,218
13-09-05 조회 9,260
13-08-23 조회 5,587
13-08-22 조회 5,104
13-08-22 조회 4,498
13-08-22 조회 4,960
13-08-17 조회 5,769
13-08-17 조회 4,065
13-07-11 조회 5,402
13-07-11 조회 4,346
13-07-08 조회 3,910
13-07-04 조회 4,152
13-07-04 조회 4,036
13-07-04 조회 3,916
13-07-03 조회 5,828
13-07-01 조회 3,680
13-07-01 조회 3,557
13-07-01 조회 4,466
13-06-21 조회 6,212
13-06-14 조회 4,780
13-06-11 조회 3,618
13-06-06 조회 5,279
13-06-05 조회 4,049
13-05-11 조회 4,772
13-05-10 조회 4,317
13-05-10 조회 4,615
13-05-10 조회 3,970
13-05-08 조회 4,325
13-05-08 조회 3,577
13-05-08 조회 3,963
13-05-08 조회 5,198
13-04-05 조회 5,982
13-03-31 조회 5,565
13-03-24 조회 3,919
13-03-24 조회 5,995
13-03-23 조회 3,580
13-03-21 조회 3,631
13-03-20 조회 3,725
13-03-20 조회 4,186
13-03-20 조회 3,675
13-03-20 조회 3,797
13-03-20 조회 6,021
13-03-20 조회 3,982
13-03-20 조회 4,697
13-03-19 조회 5,602
13-03-14 조회 3,730
13-03-14 조회 4,153
13-03-14 조회 4,445
13-03-08 조회 4,045
13-03-03 조회 4,473
13-02-24 조회 4,902
13-02-21 조회 4,607
13-02-19 조회 4,553