当前位置: 首页 > 工具软件 > fullPage.js > 使用案例 >

fullpage.js插件报错

岳英耀
2023-12-01

fullpage.js?16fe:3650 fullPage: Fullpage.js version 3 has changed its license to GPLv3 and it requires a licenseKey option. Read about it here:

1. 找到fullpage.js依赖文件

我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:

  1. 全新的界面设计 ,将会带来全新的写作体验;
  2. 在创作中心设置你喜爱的代码高亮样式,Markdown 将代码片显示选择的高亮样式 进行展示;
  3. 增加了 图片拖拽 功能,你可以将本地的图片直接拖拽到编辑区域直接展示;
  4. 全新的 KaTeX数学公式 语法;
  5. 增加了支持甘特图的mermaid语法1 功能;
  6. 增加了 多屏幕编辑 Markdown文章功能;
  7. 增加了 焦点写作模式、预览模式、简洁写作模式、左右区域同步滚轮设置 等功能,功能按钮位于编辑区域与预览区域中间;
  8. 增加了 检查列表 功能。

2. 修改代码

找到

if(!isOK){
  showError('error', 'Fullpage.js version 3 has changed its license to GPLv3 and it requires a `licenseKey` option. Read about it here:');
  showError('error', 'https://github.com/alvarotrigo/fullPage.js#options');
}
else if(l && l.length < 20){
  console.warn('%c This website was made using fullPage.js slider. More info on the following website:', msgStyle);
  console.warn('%c https://alvarotrigo.com/fullPage/', msgStyle);
}

改成

// if(!isOK){
//     showError('error', 'Fullpage.js version 3 has changed its license to GPLv3 and it requires a `licenseKey` option. Read about it here:');
//     showError('error', 'https://github.com/alvarotrigo/fullPage.js#options');
// }
if(l && l.length < 20){
    console.warn('%c This website was made using fullPage.js slider. More info on the following website:', msgStyle);
    console.warn('%c https://alvarotrigo.com/fullPage/', msgStyle);
}

  1. mermaid语法说明 ↩︎

 类似资料: