Jump to content
  • 0

z-index в слое,созданном при помощи JavaScript


Микель
 Share

Question

Подскажите ,плз.

Я вывожу скриптом из базы уменьшенные копии картинок, каждая из которых заключена в див ( код Smarty)

 {section name=banner loop=$ar_banner}
<div style="float:left;margin-right:22px;height:190px;border:0px solid red;z-index:1;" id="ban{$ar_banner[banner].id}" onmouseover="showbig('show','{$ar_banner[banner].image}',{$ar_banner[banner].width},{$ar_banner[banner].height},{$ar_banner[banner].id})" id="ban{$ar_banner[banner].id}" onmouseout="showbig('hide','{$ar_banner[banner].image}',{$ar_banner[banner].width},{$ar_banner[banner].height},{$ar_banner[banner].id})">
html_image file="/images/banners/mini_`$ar_banner[banner].image`"}
</div>
{/section}

При наведении на миниатюру у слоя,в который заключена картинка,при помощи JS создается дочерний слой, к котором уже находится оригинальное изображение (ну а при onmouseout,соответственно,всплывающий слой уничтожается)

// Создаем дочерний слой
newNode = document.createElement("div");
newNode.style.width = width;
newNode.style.height = height;
newNode.id = "new_image"+id_image;
newNode.className = "new_image";
newImage = document.createElement("img");
newImage.src = "/images/banners/"+imgname;
newNode.appendChild(newImage);
current.appendChild(newNode);
document.getElementById("new_image"+id_image).style.zIndex = 500;

Все бы хорошо, но вновь созданный слой почему-то находится ниже все прочих,кроме родительского. При том,что я уже и z-index через JS задал астрономический,а у всех прочих слоев 1. Все равно косячно. Заранее спасибо.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy