feat(fallback): use dynamic filename

This commit is contained in:
Haoyu Xu
2021-08-08 16:27:58 -04:00
parent 7099bc8c27
commit bbaacd766d
5 changed files with 39 additions and 24 deletions

View File

@@ -18,9 +18,7 @@ function supportsWebGL() {
if (!supportsWebGL()) {
alert('WebGL is unavailable. Fallback image will be used.');
var e = document.getElementById("container");
e.classList.add("fallback");
e.parentElement.classList.add("widget-wrapper");
var e = document.getElementById("fallback");
function calculateScale(width, height) {
let windowWidth = window.innerWidth;
@@ -39,6 +37,8 @@ if (!supportsWebGL()) {
e.style.width = window.operatorSettings.fallbackImage.width * scale.x + "px";
e.style.height = window.operatorSettings.fallbackImage.height * scale.x + "px";
}
e.classList.add("show");
document.getElementById("container").classList.add("hide");
}
window.addEventListener('resize', fallback, true);