Efecto de capa emergente de JavaScript
Autor:Eve Cole
Fecha de actualización:2009-06-11 16:22:38
función sAlert(cadena){
var msgw, msgh, color de borde;
msgw=400; //Ancho de la ventana de solicitud
msgh=100;//La altura de la ventana de solicitud
titleheight=25 //Altura del título de la ventana solicitada
bordercolor="#336699";//Color del borde de la ventana de solicitud
titlecolor="#99CCFF";//Color del título de la ventana de solicitud
var sAncho,sAlto;
sWidth=document.body.offsetWidth;
sHeight=pantalla.altura;
var bgObj=document.createElement("div");
bgObj.setAttribute('id','bgDiv');
bgObj.style.position="absoluto";
bgObj.style.top="0";
bgObj.style.background="#777";
bgObj.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75";
bgObj.style.opacity="0.6";
bgObj.style.left="0";
bgObj.style.width=sAncho + "px";
bgObj.style.height=sAltura + "px";
bgObj.style.zIndex = "10000";
documento.body.appendChild(bgObj);
var msgObj=document.createElement("div")
msgObj.setAttribute("id","msgDiv");
msgObj.setAttribute("alinear","centro");
msgObj.style.background="blanco";
msgObj.style.border="1px sólido " + color del borde;
msgObj.style.position = "absoluto";
msgObj.style.left = "50%";
msgObj.style.top = "50%";
msgObj.style.font="12px/1.6em Verdana, Ginebra, Arial, Helvética, sans-serif";
msgObj.style.marginLeft = "-225px";
msgObj.style.marginTop = -75+document.documentElement.scrollTop+"px";
msgObj.style.width = msgw + "px";
msgObj.style.height =msgh + "px";
msgObj.style.textAlign = "centro";
msgObj.style.lineHeight="25px";
msgObj.style.zIndex = "10001";
var título=document.createElement("h4");
title.setAttribute("id","msgTitle");
title.setAttribute("alinear","derecha");
título.estilo.margin="0";
title.style.padding="3px";
título.estilo.fondo=color del borde;
title.style.filter="progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, FinishX=100, FinishY=100,style=1,opacity=75,finishOpacity=100);";
título.estilo.opacidad="0,75";
title.style.border="1px sólido " + color del borde;
título.estilo.height="18px";
title.style.font="12px Verdana, Ginebra, Arial, Helvética, sans-serif";
title.style.color="blanco";
title.style.cursor="puntero";
title.innerHTML="Cerrar";
título.onclick=función(){
documento.body.removeChild(bgObj);
document.getElementById("msgDiv").removeChild(título);
documento.body.removeChild(msgObj);
}
documento.body.appendChild(msgObj);
document.getElementById("msgDiv").appendChild(título);
var txt=document.createElement("p");
txt.style.margin="1em 0"
txt.setAttribute("id","msgTxt");
txt.innerHTML=cadena;
document.getElementById("msgDiv").appendChild(txt);
}