dwm-app/static/js/updateMonsterSprite.js

32 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-02-01 17:40:14 +00:00
function updateMonsterSprite() {
var selectedMonster = document.getElementById("monsterDropdown").value;
2024-02-01 17:59:17 +00:00
var spriteUrl = `https://happytavern.co/.pictures/dwm/monster/${selectedMonster}.png`;
2024-02-01 17:40:14 +00:00
var iframe = document.getElementById("monsterSpriteIframe");
iframe.src = "about:blank"; // Clear the iframe content
var content = `<!DOCTYPE html>
<style>
2024-02-01 17:40:14 +00:00
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
</style>
<body>
<img src="${spriteUrl}" alt="Monster Sprite">
</body>`;
iframe.contentWindow.document.open();
iframe.contentWindow.document.write(content);
iframe.contentWindow.document.close();
}