直接上代码:
(html 有两个div backgroundPopup和fordetail)
css美工设计 与我无关
<style type="text/css">
#backgroundPopup{
display:none;
position:fixed;
_position:absolute;
height:100%;
width:100%;
top:0;
left:0;
background:#000000;
border:1px solid #cecece;
z-index:1;
}
#fordetail{
z-index:2;
}
#popupContactClose{
font-size:14px;
line-height:14px;
right:6px;
top:4px;
position:absolute;
color:#6fa5fd;
font-weight:700;
display:block;
}
</style>
<script type="text/javascript" language="javascript">
//初始化:是否开启DIV弹出窗口功能
//0 表示开启; 1 表示不开启;
var popupStatus = 0;
function loadPopup(){
if(popupStatus==0){
$("#backgroundPopup").css({
"opacity": "0.7"
});
$("#backgroundPopup").fadeIn("slow");
$("#fordetail").fadeIn("slow");
//获取系统变量
windowWidth = document.documentElement.clientWidth;
windowHeight = document.documentElement.clientHeight;
popupHeight = $("#fordetail").height();
popupWidth = $("#fordetail").width();
//居中设置
$("#fordetail").css({
"position": "absolute",
"top": windowHeight/2-popupHeight/2+document.documentElement.scrollTop,
"left": windowWidth/2-popupWidth/2
});
//以下代码仅在IE6下有效
$("#backgroundPopup").css({
"height": windowHeight
});
popupStatus = 1;
}
}
//使用Jquery去除弹窗效果
function disablePopup(){
//仅在开启标志popupStatus为1的情况下去除
if(popupStatus==1){
$("#backgroundPopup").fadeOut("slow");
$("#fordetail").fadeOut("slow");
popupStatus = 0;
}
}
</script>
关于获取高度和宽度的小补充(复制粘贴以防链接丢失:http://apps.hi.baidu.com/share/detail/24018719):
关于获取各种浏览器可见窗口大小的一点点研究
<script>
function getInfo()
{
var s = "";
s = " 网页可见区域宽:" document.body.clientWidth;
s = " 网页可见区域高:" document.body.clientHeight;
s = " 网页可见区域宽:" document.body.offsetWidth " (包括边线和滚动条的宽)";
s = " 网页可见区域高:" document.body.offsetHeight " (包括边线的宽)";
s = " 网页正文全文宽:" document.body.scrollWidth;
s = " 网页正文全文高:" document.body.scrollHeight;
s = " 网页被卷去的高(ff):" document.body.scrollTop;
s = " 网页被卷去的高(ie):" document.documentElement.scrollTop;
s = " 网页被卷去的左:" document.body.scrollLeft;
s = " 网页正文部分上:" window.screenTop;
s = " 网页正文部分左:" window.screenLeft;
s = " 屏幕分辨率的高:" window.screen.height;
s = " 屏幕分辨率的宽:" window.screen.width;
s = " 屏幕可用工作区高度:" window.screen.availHeight;
s = " 屏幕可用工作区宽度:" window.screen.availWidth;
s = " 你的屏幕设置是 " window.screen.colorDepth " 位彩色";
s = " 你的屏幕设置 " window.screen.deviceXDPI " 像素/英寸";
//alert (s);
}
getInfo();
</script>
在我本地测试当中:
在IE、FireFox、Opera下都可以使用
document.body.clientWidth
document.body.clientHeight
即可获得,很简单,很方便。
而在公司项目当中:
Opera仍然使用
document.body.clientWidth
document.body.clientHeight
可是IE和FireFox则使用
document.documentElement.clientWidth
document.documentElement.clientHeight
原来是W3C的标准在作怪啊
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
如果在页面中添加这行标记的话 在IE中:
document.body.clientWidth ==> BODY对象宽度
document.body.clientHeight ==> BODY对象高度
document.documentElement.clientWidth ==> 可见区域宽度
document.documentElement.clientHeight ==> 可见区域高度
在FireFox中:
document.body.clientWidth ==> BODY对象宽度
document.body.clientHeight ==> BODY对象高度
document.documentElement.clientWidth ==> 可见区域宽度
document.documentElement.clientHeight ==> 可见区域高度
?
在Opera中:
document.body.clientWidth ==> 可见区域宽度
document.body.clientHeight ==> 可见区域高度
document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽)
document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高)
而如果没有定义W3C的标准,则
IE为:
document.documentElement.clientWidth ==> 0
document.documentElement.clientHeight ==> 0
FireFox为:
document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽)document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高)
Opera为:
document.documentElement.clientWidth ==> 页面对象宽度(即BODY对象宽度加上Margin宽)document.documentElement.clientHeight ==> 页面对象高度(即BODY对象高度加上Margin高)
分享到:
相关推荐
### JS弹出层居中可移动技术解析 #### 一、引言 在网页开发过程中,弹出层(Modal)是一种常见的交互设计模式,用于在当前页面上展示额外的信息或功能,而无需重新加载页面。其中,弹出层能够居中显示并且可以被...
标题“弹出层居中”涉及的是网页设计中常见的用户界面元素布局问题,特别是使用JavaScript库如jQuery实现的弹出窗口或对话框的居中显示。在这个场景中,"TestJQueryMaskLayer"可能是一个使用jQuery实现的遮罩层插件...
在居中弹出层中,JavaScript负责计算浏览器窗口的大小,然后动态设置弹出层的位置,确保其始终居中。例如,可以使用`window.innerWidth`和`window.innerHeight`获取窗口尺寸,再通过调整弹出层的`left`和`top`样式...
在本项目"Mvc5jQuery弹出层居中并显示遮罩"中,开发者利用Microsoft的ASP.NET MVC5框架和jQuery库,实现了弹出窗口的居中显示以及半透明遮罩效果,提升了用户界面的美观度和易用性。 首先,我们来了解一下MVC5框架...
1. JavaScript 弹出层居中效果的制作: - 实现弹出层(如提示框)的居中显示,是用户界面设计中常见的需求,可以让对话框或者信息提示更加美观和友好。 - 在Web开发中,弹出层居中可以通过多种方式实现,例如使用...
首先,我们要理解“弹出层居中问题版1”所提及的挑战。在网页设计中,实现弹出层的居中并不总是直截了当的,这可能涉及到CSS布局、窗口大小变化的响应式设计以及浏览器兼容性问题。通过阅读博文链接,我们可以获取更...
为了使弹出层在页面中保持垂直居中,我们可以使用CSS和JavaScript结合的方式来实现。 1. **CSS基础布局**: - 首先,为弹出层创建一个容器元素,并设置其 `position` 属性为 `absolute` 或 `fixed`,这样可以脱离...
标题“兼容ie,FF,chrome,opera的弹出层居中js”所指的就是一个JavaScript实现的弹出层(popup layer)定位代码,它能在Internet Explorer(IE)、Firefox(FF)、Chrome以及Opera这些主流浏览器中实现居中显示。...
在网页设计中,"DIV始终居中的半透明弹出层"是一个常见的需求,它涉及到CSS布局、定位以及透明度设置等多个技术点。下面将详细解释这些知识点。 首先,`DIV`是HTML中的一个块级元素,常用于创建网页布局结构。在本...
/* 使弹出层居中 */ width: 300px; height: auto; /* 弹出层大小 */ background-color: white; /* 背景颜色 */ border: 1px solid black; /* 边框 */ padding: 20px; /* 内容区边距 */ box-shadow: 0 0 10px ...
jQuery,一个广泛使用的JavaScript库,提供了丰富的功能来简化DOM操作,包括实现弹出层的居中对齐。本文将详细介绍如何使用jQuery实现弹出层的绝对居中。 首先,我们需要理解页面布局的基本概念。在HTML和CSS中,...
/* 使弹出层居中 */ width: 400px; padding: 20px; background-color: white; border: 1px solid #ccc; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3); z-index: 9999; /* 确保弹出层在其他元素之上 */ } ``` ...
在压缩包中的"js+jQuery+css弹出层"文件中,应该包含了相关的JavaScript代码文件(可能命名为`popup.js`或`jquery.popup.js`)、CSS样式表(如`popup.css`)以及HTML模板(可能为`index.html`),这些文件组合起来便...
例如,对于图片预览,我们可以将图片作为弹出层内容,并通过调整CSS实现图片的缩放和居中对齐: ```css .popup-content img { width: 100%; height: auto; max-width: 80%; margin: auto; } ``` 在实际项目中...
综上所述,"js弹出层 下载直接用"的资源提供了完整的弹出层实现,涵盖了从HTML结构到JavaScript逻辑,再到CSS样式和图片资源的全套解决方案,是学习和快速应用JavaScript弹出层功能的良好实例。
js弹出层绝对居中(ie,火狐都支持)在不同浏览器上显示效果一样
这里主要定义了弹出层的样式,使其在页面上居中并具有适当的透明度,同时确保内容自适应: ```css .modal { display: none; /* 隐藏初始状态 */ position: fixed; /* 固定定位 */ z-index: 1; /* 设置z-index以...
"简单精美js弹出层效果"这个主题,就是关于如何使用JavaScript来创建既美观又易于使用的弹出层。 首先,我们需要理解弹出层的基本概念。弹出层,也称为模态窗口或对话框,是在网页主内容上覆盖的一个浮动元素,通常...