Posted in Javascript onJanuary 04, 2014
用这锻代码 之前请先下载jquery库
var maskStackCount = 0; function mask(method){ //这里是你想要进行遮罩的窗口,我这里想要遮罩的是一个iframe窗口,也可以用var winObj=$(window) var winObj=window.top.$("body").find("iframe[name='dialognormaliframe']"); if(typeof method == "undefined"){ method="open"; } if (method == "open") { if (maskStackCount <= 0) { var mask = $("<div id='window-mask' class='window-mask' style='display:none'></div>").appendTo("body"); mask.css({ width: winObj.width() + "px", height: winObj.height() + "px", filter: "alpha(opacity=60)" }).show(); winObj.on("resize.mask", function(){ mask.css({ width: winObj.width() + "px", height: winObj.height() + "px" }); }); } maskStackCount++; } else if(method == "close"){ maskStackCount--; $("#window-mask").remove(); winObj.off("resize.mask"); } }
js形成页面的一种遮罩效果实例代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@