gammatools/web/assets/js/setResultImage.js

12 lines
334 B
JavaScript
Raw Normal View History

export function setResultImage(name) {
let imgElement = document.createElement('img');
2024-07-16 23:50:14 +00:00
imgElement.src = `${window.IMG}/${name }.jpg`;
console.log(imgElement.src);
imgElement.onerror = function () {
2024-07-16 23:50:14 +00:00
this.src = `${window.IMG}/404.jpg`;
};
resultSection.appendChild(imgElement);
return imgElement;
}