2009-02-09 87 views
3

我想创建一种仅在页面内的单个DIV上起作用的轻/粗框。 当我的第一个div(phantom_back)触发时,按照我想要的但第二个,phantom_top在phantom_back之后设置其自身,无论其z-index和定位如何。javascript,css,z-index,div堆栈

我在做什么错?

这是我到目前为止有:

<html> 
<head> 
    <script type="text/javascript"> 
    <!--// 
     function phantom_back(image) 
     { 
      document.getElementById('phantom_back').style.zIndex = 100; 
      document.getElementById('phantom_back').style.height = '100%'; 
      document.getElementById('phantom_back').style.width = '100%'; 
      phantom_top(); 
     } 

     function phantom_top(image) 
     { 
      document.getElementById('phantom_top').style.zIndex = 102; 
      document.getElementById('phantom_top').style.height = 600; 
      document.getElementById('phantom_top').style.width = 600; 
      document.getElementById('phantom_top').style.top = 0; 
      document.getElementById('phantom_top').style.left = 0; 
     } 
    //--> 
    </script> 
</head> 
<body> 
    <a href="#" onclick="phantom_back()">Change</a> 

    <div style="height: 700px; width: 700px; border: 2px black solid; margin:0 auto; background-color: red;" id="overlord"> 
     <div style="height: 10px; width: 10px; position: relative; z-index: -1; background-color: #000000; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;" id="phantom_back"></div> 

     <div style="height: 10px; width: 10px; position: relative; z-index: -3; margin: 0 auto; background-color: green;" id="phantom_top">asdf</div> 
    </div> 

</body> 
</html> 

,我很困惑,为什么没有我已经能够找到的报价是这样的教程。

回答

5

所以,我明白了。我在phantom_back上设置了一个绝对定位,而不是试图重新设置它们,我只是设置了可见性。当我试图设置Z指数时,它会在我身上分崩离析。

<html> 
<head> 
    <script type="text/javascript"> 
    <!--// 
     function phantom_back(image) 
      { 
       document.getElementById('phantom_back').style.height = 700; 
       document.getElementById('phantom_back').style.width = 700; 
       document.getElementById('phantom_back').style.zIndex = 50; 
       phantom_top(); 
      } 

     function phantom_top() 
      { 
       document.getElementById('phantom_top').style.height = 600; 
       document.getElementById('phantom_top').style.width = 600; 
       document.getElementById('phantom_top').style.visibility = "visible"; 
      } 
    //--> 
    </script> 
</head> 
<body> 
    <a href="#" onclick="phantom_back()">Change</a> 

    <div style="height: 700px; width: 700px; border: 2px black solid; margin:0 auto; background-color: red;" id="overlord"> 
     <div style="height: 10px; width: 10px; position: absolute; z-index: -1; background-color: #000000; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;" id="phantom_back"></div> 

     <div style="margin: 0 auto; text-align: center; height: 10px; width: 10px; position: relative; z-index: 102; top: 10px; background-color: white; visibility: hidden;" id="phantom_top"><br /><br /><img src="load.gif"></div> 
    </div> 

</body> 
</html> 
0

phantom_top设置为位置:相对不绝对,因此它当前不重叠phantom_back。

+0

我有一个phantom_back底部的phantom_top调用。我做错了吗? – aggitan 2009-02-09 19:33:47

0

不要忘记串联一个px字符串的高度和宽度。你不需要像素为Z指数

document.getElementById('phantom_back').style.height = 700 + "px"; 

就像那样。