2014-09-30 74 views
0

我在我的網站中使用了fullpage.js。我希望水平幻燈片自動滑動。爲此,我使用以下代碼。但我得到的錯誤控制檯:未捕獲的typeError:undefined不是使用幻燈片時的函數left infullpage.js

Uncaught typeError:undefined is not a function. 

代碼:

<script type="text/javascript"> 
    $(document).ready(function() { 
     $('#fullpage').fullpage({ 
      anchors: ['home', 'about', 'why-us','services','team','contact'], 
      autoScrolling: true, 
      css3: true, 
      afterRender: function() { 
       setInterval(function() { 
        $.fn.fullpage.moveSlideRight(); 
       }, 3000); 
      } 
     }); 
    }); 
</script> 
+1

你有未定義的全頁方法。 – monkeyinsight 2014-09-30 05:20:29

+0

你在哪裏得到錯誤我的意思是在哪一行? – Kenny 2014-09-30 05:20:36

+0

嗨肯尼,我剛剛聽到上面的錯誤 - },3000); – 2014-09-30 05:30:36

回答

1

你是不是正確,包括所需的文件。 確保它們位於您指定的位置。

正如文檔中指出的那樣,您可以在the examples provided中看到,這是您必須遵循的用於添加所需文件的結構。

<link rel="stylesheet" type="text/css" href="jquery.fullPage.css" /> 

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 

<!-- This following line is needed in case of using the default easing option or when using another 
one rather than "linear" or "swing". You can also add the full jQuery UI instead of this file if you prefer --> 
<script src="vendors/jquery.easings.min.js"></script> 


<!-- This following line needed in the case of using the plugin option `scrollOverflow:true` --> 
<script type="text/javascript" src="vendors/jquery.slimscroll.min.js"></script> 

<script type="text/javascript" src="jquery.fullPage.js"></script> 
+0

NO。如你所說,我改變了結構。但沒有發生。我也嘗試在你的一個例子中實現它,但它不工作。問題出在這 - \t $ .fn.fullpage.moveSlideRight(); – 2014-09-30 11:57:39

+0

問題已解決。我從你工作的小提琴中複製了代碼。謝謝。 – 2014-09-30 13:27:20

+0

@SachinSangde你應該接受答案,如果它解決了你的問題,所以它可以幫助其他人在未來同樣的問題。 – Alvaro 2014-09-30 14:08:09

相關問題