我在我的網站中使用了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>
你有未定義的全頁方法。 – monkeyinsight 2014-09-30 05:20:29
你在哪裏得到錯誤我的意思是在哪一行? – Kenny 2014-09-30 05:20:36
嗨肯尼,我剛剛聽到上面的錯誤 - },3000); – 2014-09-30 05:30:36