ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-20
{ 75 // Defind. 76 var clientWidth = document.documentElement.clientWidth; 77 var clientHeight = document.documentElement.clientHeight; 78 // Get the objs. 79 var objContainer = document.getElementById(MemberParameters.ContainerDivId); 80 var objShieldBg = document.getElementById(MemberParameters.ShieldBGId); 81 if (objContainer == null || objShieldBg == null) 82 return false; 83 // Bg width and height. 84 var bgWidth = Math.max(Math.max(document.documentElement.scrollWidth, document.body.scrollWidth), clientWidth); 85 var bgHeight = Math.max (document.body.scrollHeight, clientHeight); 86 // Container width and height. 87 var containerWidth = (clientWidth - objContainer.clientWidth) / 2; 88 var containerHeight = (clientHeight - objContainer.clientHeight) / 2; 89 // Adjust the values. 90 if (containerWidth < 0) 91 containerWidth = MemberParameters.DefaultSpace; 92 if (containerHeight < 0) 93 containerHeight = MemberParameters.DefaultSpace; 94 // Check the container''s width and height. 95 if (objContainer.clientHeight > bgHeight) 96 bgHeight = containerHeight + objContainer.clientHeight + MemberParameters.DefaultSpace; 97 if (objContainer.clientWidth > bgWidth) 98 bgWidth = containerWidth + objContainer.clientWidth + MemberParameters.DefaultSpace; 99 // Update the IsScroll status. 100 if (bgHeight > clientHeight || bgWidth > clientWidth) { 101 MemberParameters.IsScroll = true; 102 bgHeight += MemberParameters.DefaultSpace; 103 } 104 // Set values. 105 objContainer.style.left = containerWidth + "px"; 106 objContainer.style.top = containerHeight + "px"; 107 objShieldBg.style.width = bgWidth + "px"; 108 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例的所有评论