2016-11-05 60 views
1

意外結束我有jQuery的服務器 [http://melodia.esy.es/wp-includes/js/jquery/jquery.js]jQuery的jquery.RotateImageMenu未捕獲的語法錯誤:輸入

腳本是基於1.5.2/jquery.min.js 後編輯腳本我顯示消息

未捕獲的語法錯誤:爲RotateImageMenu.init

輸入 意外結束,我想結合這個腳本js.query版本1.12.4 有什麼事,請幫助

jQuery(function ($) { 
var $listItems   = $('#rm_container > ul > li'), 
totalItems  = $listItems.length, 

//the controls 
$rm_next  = $('#rm_next'), 
$rm_prev  = $('#rm_prev'), 
$rm_play  = $('#rm_play'), 
$rm_pause  = $('#rm_pause'), 

//the masks and corners of the slider 
$rm_mask_left = $('#rm_mask_left'), 
$rm_mask_right = $('#rm_mask_right'), 
$rm_corner_left = $('#rm_corner_left'), 
$rm_corner_right= $('#rm_corner_right'), 

RotateImageMenu = (function() { 
     //difference of animation time between the items 
    var timeDiff   = 300, 
     //time between each image animation (slideshow) 
     slideshowTime  = 3000, 
     slideshowInterval, 
     //checks if the images are rotating 
     isRotating   = false, 
     //how many images completed each slideshow iteration 
     completed   = 0, 
     /* 
     all our images have 310 of width and 465 of height. 
     this could/should be dynamically calculated 
     if we would have different image sizes. 

     we will set the rotation origin at 
     x = width/2 and y = height*2 
     */ 
     origin    = ['155px', '930px'], 
     init    = function() { 
      configure(); 
      initEventsHandler(); 
     }, 
     //initialize some events 
     initEventsHandler = function() { 
      /* 
      next and previous arrows: 
      we will stop the slideshow if active, 
      and rotate each items images. 
      1 rotate right 
      -1 rotate left 
      */ 
      $rm_next.bind('click', function(e) { 
       stopSlideshow(); 
       rotateImages(1); 
       return false; 
      }); 
      $rm_prev.bind('click', function(e) { 
       stopSlideshow(); 
       rotateImages(-1); 
       return false; 
      }); 
      /* 
      start and stop the slideshow 
      */ 
      $rm_play.bind('click', function(e) { 
       startSlideshow(); 
       return false; 
      }); 
      $rm_pause.bind('click', function(e) { 
       stopSlideshow(); 
       return false; 
      }); 
      /* 
      adds events to the mouse and left/right keys 
      */ 
      $(document).bind('mousewheel', function(e, delta) { 
       if(delta > 0) { 
        stopSlideshow(); 
        rotateImages(0); 
       } 
       else { 
        stopSlideshow(); 
        rotateImages(1); 
       } 
       return false; 
      }).keydown(function(e){ 
       switch(e.which){ 
        case 37: 
         stopSlideshow(); 
         rotateImages(0); 
         break; 
        case 39: 
         stopSlideshow(); 
         rotateImages(1); 
         break; 
       } 
      }); 
     }, 
     /* 
     rotates each items images. 
     we set a delay between each item animation 
     */ 
     rotateImages  = function(dir) { 
      //if the animation is in progress return 
      if(isRotating) return false; 

      isRotating = true; 

      $listItems.each(function(i) { 
       var $item    = $(this), 
        /* 
        the delay calculation. 
        if rotation is to the right, 
        then the first item to rotate is the first one, 
        otherwise the last one 
        */ 
        interval   = (dir === 1) ? i * timeDiff : (totalItems - 1 - i) * timeDiff; 

       setTimeout(function() { 
         //the images associated to this item 
        var $otherImages  = $('#' + $item.data('images')).children('img'), 
         totalOtherImages = $otherImages.length; 

         //the current one 
         $img    = $item.children('img:last'), 
         //keep track of each items current image 
         current    = $item.data('current'); 
         //out of bounds 
         if(current > totalOtherImages - 1) 
          current = 0; 
         else if(current < 0) 
          current = totalOtherImages - 1; 

         //the next image to show and its initial rotation (depends on dir) 
         var otherRotation = (dir === 1) ? '-30deg' : '30deg', 
          $other   = $otherImages.eq(current).clone(); 




      $listItems.each(function(i) { 
       //the initial current is 1 
       //since we already showing the first image 
       var $item = $(this).data('current', 1); 

      }); 
     }, 
     //rotates the masks and corners 
     rotateMaskCorners = function() { 
      $rm_mask_left.transform({rotate: '-3deg'}); 
      $rm_mask_right.transform({rotate: '3deg'}); 
      $rm_corner_left.transform({rotate: '45deg'}); 
      $rm_corner_right.transform({rotate: '-45deg'}); 
     }, 
     //hides the masks and corners 
     hideMaskCorners  = function() { 
      $rm_mask_left.hide(); 
      $rm_mask_right.hide(); 
      $rm_corner_left.hide(); 
      $rm_corner_right.hide(); 
     }, 
     startSlideshow  = function() { 
      clearInterval(slideshowInterval); 
      rotateImages(1); 
      slideshowInterval = setInterval(function() { 
       rotateImages(1); 
      }, slideshowTime); 
      //show the pause button and hide the play button 
      $rm_play.hide(); 
      $rm_pause.show(); 
     }, 
     stopSlideshow  = function() { 
      clearInterval(slideshowInterval); 
      //show the play button and hide the pause button 
      $rm_pause.hide(); 
      $rm_play.show(); 


    return {init : init}; 
})(); 

RotateImageMenu.init(); });

回答

0

Rotate Image Menu.init(); });

它位於代碼的結束,但不適合這個標籤代碼

+0

我的工作了。謝謝 – Krystian

相關問題