控制台报错:fullPage: Fullpage.js version 3 has changed its license to GPLv3 and it requires a licenseKey option. Read about it here:
解决办法:
在fullpage.js文件中查找licenseKey,删除如下代码
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);
}
本文介绍了解决Fullpage.js版本3更新至GPLv3许可证后出现的错误的方法。通过修改fullpage.js源代码,删除特定的licenseKey检查,可以避免控制台报错并使网站正常运行。
196

被折叠的 条评论
为什么被折叠?



