在使用 Particles.js 时,我收到 Uncaught SyntaxError: Unexpected end of input on line 36 。
代码:https: //jsfiddle.net/30qtvprj/ 代码的主要问题部分(触发错误的地方):
particlesJS("particles-js", resp);
var count_particles, stats, update;
stats = new Stats();
stats.setMode(0);
stats.domElement.style.position = "absolute";
stats.domElement.style.left = "0px";
stats.domElement.style.top = "0px";
document.body.appendChild(stats.domElement);
count_particles = document.querySelector(".js-count-particles");
update = function() {
stats.begin();
stats.end();
if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
}
requestAnimationFrame(update);
};
requestAnimationFrame(update);
慕森王
相关分类