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

· 2014-03-25 (화) 13:16:51 · 3745 · 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,372
14-08-26 조회 3,529
14-08-26 조회 4,084
14-08-26 조회 3,455
14-08-26 조회 3,691
14-08-26 조회 3,624
14-08-26 조회 3,393
14-08-26 조회 3,446
14-08-26 조회 3,454
14-08-26 조회 3,495
14-08-25 조회 4,008
14-08-16 조회 4,143
14-08-12 조회 4,033
14-08-05 조회 3,809
14-08-04 조회 4,555
14-08-04 조회 3,905
14-08-01 조회 4,962
14-07-29 조회 4,100
14-07-10 조회 3,994
14-07-08 조회 4,637
14-07-08 조회 4,197
14-07-05 조회 3,798
14-05-26 조회 5,321
14-05-26 조회 4,031
14-05-21 조회 4,471
14-05-19 조회 7,417
14-05-17 조회 6,689
14-04-30 조회 7,085
14-04-27 조회 4,509
14-04-26 조회 4,680
14-04-13 조회 4,808
14-04-13 조회 4,067
14-03-25 조회 6,413
14-03-25 조회 4,047
14-03-12 조회 3,851
14-03-12 조회 5,270
14-02-24 조회 4,572
13-12-27 조회 3,902
13-11-18 조회 4,232
13-11-18 조회 6,527
13-10-17 조회 4,539
13-10-03 조회 6,203
13-10-02 조회 4,093
13-09-29 조회 4,570
13-09-29 조회 3,946
13-09-17 조회 3,749
13-09-11 조회 5,942
13-09-09 조회 4,219
13-09-05 조회 9,270
13-08-23 조회 5,593
13-08-22 조회 5,117
13-08-22 조회 4,501
13-08-22 조회 4,962
13-08-17 조회 5,833
13-08-17 조회 4,071
13-07-11 조회 5,404
13-07-11 조회 4,351
13-07-08 조회 3,916
13-07-04 조회 4,154
13-07-04 조회 4,041
13-07-04 조회 3,924
13-07-03 조회 5,833
13-07-01 조회 3,685
13-07-01 조회 3,568
13-07-01 조회 4,477
13-06-21 조회 6,216
13-06-14 조회 4,781
13-06-11 조회 3,625
13-06-06 조회 5,286
13-06-05 조회 4,059
13-05-11 조회 4,783
13-05-10 조회 4,328
13-05-10 조회 4,616
13-05-10 조회 3,971
13-05-08 조회 4,332
13-05-08 조회 3,591
13-05-08 조회 3,976
13-05-08 조회 5,201
13-04-05 조회 5,983
13-03-31 조회 5,580
13-03-24 조회 3,920
13-03-24 조회 6,007
13-03-23 조회 3,584
13-03-21 조회 3,644
13-03-20 조회 3,727
13-03-20 조회 4,195
13-03-20 조회 3,675
13-03-20 조회 3,811
13-03-20 조회 6,022
13-03-20 조회 3,983
13-03-20 조회 4,700
13-03-19 조회 5,618
13-03-14 조회 3,734
13-03-14 조회 4,159
13-03-14 조회 4,457
13-03-08 조회 4,074
13-03-03 조회 4,483
13-02-24 조회 4,915
13-02-21 조회 4,616
13-02-19 조회 4,556