4

我正在尝试在我的 Sage 主题中导入 Fullpage.js。我安装了 FullPageScroll:

npm install fullpage.js

添加了以下代码:scripts/main.js:

// import external dependencies
import 'jquery';
import 'fullpage.js/vendors/scrolloverflow.js';
import 'fullpage.js/dist/fullpage.js';

和:脚本/路由/home.js:

// Initializing it
$('#fullpage').fullpage({
  //options here
  autoScrolling: true,

  //Navigation
  navigation: true,
  navigationPosition: 'left',
});

//methods
$.fn.fullpage.setAllowScrolling(true);

但仍然出现此错误(我按照 Sage book 第 6.6 章中记录的说明进行操作):

未捕获的类型错误:整页不是构造函数

4

0 回答 0