22
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-21 20:39:10 +08:00
parent faf8aecdd0
commit 8f5ea3dc7b
2 changed files with 9 additions and 4 deletions

View File

@@ -4,9 +4,13 @@
(function () {
function initGlobe() {
var container = document.getElementById("bannerGlobe");
if (!container) return;
if (!container) {
console.warn("[Globe] bannerGlobe container not found");
return;
}
if (typeof THREE === "undefined") {
// Three.js 未加载时直接跳过,不影响其它功能
console.warn("[Globe] THREE is undefined, please ensure three.min.js is loaded");
return;
}
@@ -181,4 +185,3 @@
initGlobe();
}
})();