1
我有一個引導面板像下面覆蓋在引導面板
<div class="panel">
<div class="panel-body">
<div id="panel-overlay"></div>
...
</div>
</div>
#panel-overlay {
/* set it to fill the whil screen */
width: 100%;
height: 100%;
/* transparency for different browsers */
filter: alpha(opacity = 50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
background: #000;
z-index: 3000;
/* hide it by default */
display: none;
}
function panelOverlay() {
var panel = $('.panel');
var maskHeight = panel.height();
var maskWidth = panel.width();
$('#panel-overlay').css({
height : maskHeight,
width : maskWidth
}).show();
}
我怎樣才能使覆蓋在顯示面板?
它需要某種定位的設置利用的z-index。你有沒有嘗試將它設置爲'position:relative;' – Evan 2014-09-04 21:15:05
是的,但是它沒有在上面顯示..besides它取代了所有的東西.. – 2014-09-04 21:17:04
給面板一個'position:relative'和一個'position:absolute'給overlay 。 – 2014-09-04 21:17:13