我有一点问题,希望你们中的一些人可以帮助我。 我附上这张图片来说明:
这是一个来自Sohtanaka的弹出脚本我认为,所以你看到的是一个弹出窗口。 CSS看起来像这样:
#fade { /*--Transparent background layer--*/
display:none; /*--hidden by default--*/
background:#000000;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
opacity:.80;
z-index:9999;
}
.popup_block{
display:none; /*--hidden by default--*/
background:#ffffff;
padding:20px;
border:20px solid #dddddd;
float:left;
position:absolute;
top:50%;
left:50%;
z-index:99999;
/*--CSS3 Box Shadows--*/
-webkit-box-shadow:0px 0px 20px #000000;
-moz-box-shadow:0px 0px 20px #000000;
box-shadow:0px 0px 20px #000000;
/*--CSS3 Rounded Corners--*/
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
font-size:12px;
height:625px;
}
img.btn_close {
float:right;
margin:-55px -55px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
position:absolute;
}
*html .popup_block {
position:absolute;
}
和javascript:
$(document).ready(function(){
//When you click on a link with class of poplight and the href starts with a #
$('a.poplight[href^=#]').click(function() {
var popID = $(this).attr('rel'); //Get Popup Name
var popURL = $(this).attr('href'); //Get Popup href to define size
//Pull Query & Variables from href URL
var query= popURL.split('?');
var dim= query[1].split('&');
var popWidth = dim[0].split('=')[1]; //Gets the first query string value
//Fade in the Popup and add close button
$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="../images/close_pop.png" class="btn_close" title="Close Window" alt="Close" /></a>');
//Define margin for center alignment (vertical + horizontal) - we add 80 to the height/width to accomodate for the padding + border width defined in the css
var popMargTop = ($('#' + popID).height() + 80) / 2;
var popMargLeft = ($('#' + popID).width() + 80) / 2;
//Apply Margin to Popup
$('#' + popID).css({
'margin-top' : -popMargTop,
'margin-left' : -popMargLeft
});
//Fade in Background
$('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer
return false;
});
//Close Popups and Fade Layer
$('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
$('#fade , .popup_block').fadeOut(function() {
$('#fade, a.close').remove();
}); //fade them both out
return false;
});
});
确定。所以第一张照片是我在下面链接时使用CSS的时候。工作的每一个人,以及右上角的近十字架都在那里工作。问题是,我在弹出窗口上设置了固定的高度,并且根据链接到弹出窗口的ID,内部的内容可能更多,而且可能更少。因此,固定高度并不总是足够,您可以在第一张图片的底部看到,其中内容实际上是在窗口框架之外。 好吧,然后我尝试使用overflow:auto(我知道我应该溢出-y两侧的滚动条,但是另一张图片只是溢出,所以裸露在我身边;)),我得到了另一张图片。然后我在窗口内部得到一个滚动条,我可以轻松滚动查看其他内容,因为它应该是(再次,忽略x滚动条)。但是,不幸的是,并非近距离按钮不希望像以前一样显示,而是隐藏在边界之后。 所以我有点迷失在这里做什么? 我尝试了一些东西,在div中的javascript中包含按钮,然后定位,但这似乎不像我做的那样工作。 那么有人提出建议吗? :)
提前致谢。
此致
答案 0 :(得分:0)
javascript被写为带id,你的popup_block是一个类。如果您发布了一些HTML代码,我会非常有帮助。 =)
注意:当位置是绝对的
时,我不认为float:left
有效
答案 1 :(得分:0)
我找到了适合你的解决方案。在popup_block
中添加一个新的部门并给它溢出。然后你可以正确看到关闭图像。我创造了两个jsfiddle例子。一个内容较少,另一个内容较多。
我也调整了一些CSS。外部添加了关闭图像。
希望这能解决您的问题。
干杯!!!