ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-20
ementById (MemberParameters.ShieldBGId); 36 if (objShieldBg != null) { 37 objShieldBg.style.display = ""; 38 } else { 39 var objNewDiv = document.createElement("DIV"); 40 objNewDiv.setAttribute("id", MemberParameters.ShieldBGId); 41 objNewDiv.style.position = "absolute"; 42 objNewDiv.style.zIndex = MemberParameters.ShieldBGZIndex; 43 objNewDiv.style.top = "0px"; 44 objNewDiv.style.left = "0px"; 45 // Set the class name. 46 objNewDiv.className = MemberParameters.ShieldBGClassName; 47 // Append it. 48 objContainerDiv.parentNode.appendChild(objNewDiv); 49 } 50 // 51 // Caculate the width and height. 52 this.CaculateWidthAndHeight(); 53 //// If you want to keep the layout on the changeless position, use this. 54 // Add the reflesh events. 55 // this.AddScrollEvent(); 56 //// 57 }, 58 // 59 // Hide the content layout. 60 HideContainerDiv: function() { 61 var objContainerDiv = document.getElementById(MemberParameters.ContainerDivId); 62 var objShieldBg = document.getElementById(MemberParameters.ShieldBGId); 63 if (objContainerDiv == null || objShieldBg == null) 64 return false; 65 objContainerDiv.style.display = "none"; 66 objShieldBg.style.display = "none"; 67 //// If you want to keep the layout on the changeless position, use this. 68 // Remove the reflesh events. 69 // this.RemoveScrollEvent(); 70 //// 71 }, 72 // 73 // Caculate the widht and height. 74 CaculateWidthAndHeight: function() |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例的所有评论