12 lines
428 B
Plaintext
12 lines
428 B
Plaintext
function getImage(imageName, galleryName) {
|
|
var Image = elementPlace("body",imageName,null,"div");
|
|
Image.className = "thumbnail";
|
|
Image.innerHTML = imageName;
|
|
Image.style.backgroundImage = "url("+window.api_url+"?i!"+imageName+"!"+galleryName+"!thumb)";
|
|
Image.style.backgroundRepeat = "no-repeat";
|
|
Image.style.backgroundPosition = "center center";
|
|
Image.onclick = function () {
|
|
showImage(imageName, galleryName);
|
|
};
|
|
}
|