16 lines
790 B
Plaintext
16 lines
790 B
Plaintext
|
function showImage(imageName, galleryName) {
|
||
|
window.curImage = {};
|
||
|
imageViewElements();
|
||
|
window.curImage.controls.position.innerHTML = imageName;
|
||
|
window.curImage.controls.close.innerHTML = "Close";
|
||
|
window.curImage.controls.close.onclick = function () {
|
||
|
var node = window.curImage.back;
|
||
|
node.parentNode.removeChild(node);
|
||
|
};
|
||
|
window.curImage.container.imagePlace.style.backgroundImage = "url("+window.api_url+"?i!"+imageName+"!"+galleryName+"!thumb)";
|
||
|
window.curImage.container.imagePlace.style.backgroundRepeat = "no-repeat";
|
||
|
window.curImage.container.imagePlace.style.backgroundPosition = "center center";
|
||
|
window.curImage.container.imagePlace.style.backgroundSize = "contain";
|
||
|
window.curImage.container.imagePlace.image.src = window.api_url+"?i!"+imageName+"!"+galleryName;
|
||
|
}
|