ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-20
objShieldBg.style.height = bgHeight + "px"; 109 }, 110 // 111 // Set the event to reflesh the pop-up layout. 112 AddScrollEvent: function() { 113 if (MemberParameters.IsScroll) { 114 AssistantFunctions.AddEvent(window, "onscroll", this, this.CaculateWidthAndHeight); 115 AssistantFunctions.AddEvent(window, "onresize", this, this.CaculateWidthAndHeight); 116 } 117 }, 118 // 119 // Remove the events to reflesh the pop-up layout. 120 RemoveScrollEvent: function() { 121 if (MemberParameters.IsScroll) { 122 AssistantFunctions.RemoveEvent(window, "onscroll", this, this.CaculateWidthAndHeight); 123 AssistantFunctions.RemoveEvent(window, "onresize", this, this.CaculateWidthAndHeight); 124 } 125 } 126 }; 127 128 // 129 // Objects for assistant functions. 130 var AssistantFunctions = { 131 // 132 // Add Event to window. 133 AddEvent: function(obj, event, source, func) { 134 if (obj.attachEvent) { 135 // IE. 136 obj.attachEvent(event, function() { func.apply(source, arguments); }); 137 } 138 else { 139 // FF. 140 obj.addEventListener(event, func, false); 141 } 142 }, 143 // 144 // Remove Event from window. 145 RemoveEvent: function (obj, event, source, func) { 146 if (obj.detachEvent) { 147 // IE. 148 obj.detachEvent(event, func); 149 } 150 else { 151 // FF. 152 obj.removeEventListener(event, func, false); 153 } 154 } 155 }; 156 157 // 158 // Objects for app invoke. 159 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET&Javascript实现半透明背景&模式弹出个性化页面实例的所有评论