11/09/2002, 19:48
|
| Crazy Coder | | Fecha de Ingreso: enero-2002 Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses Puntos: 193 | |
Re: fullscreen Que tal !!
e posteo el Codigo para que el navegador se ajuste a pantalla completa Este script funciona con varios navegadores!
<html>
<head>
<title>El Titulo </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
<!--
IE4 = (document.all);
NS4 = (document.layers);
IEmac = (IE4 && navigator.appVersion.indexOf("Mac") != -1);
ver4 = (IE4 || NS4);
function showTool(){
if(!ver4) return;
if (IE4 && !IEmac) window.open("NOMBRE.htm",null,"full screen=yes,scrollbars=no")
else {
aW = (NS4) ? screen.availWidth : screen.width;
aH = (NS4) ? screen.availHeight : screen.height;
if(NS4)
window.open("NOMBRE.htm",null,"oute rWidth="+aW+",outerHeight="+aH+&quo t;,
screenX=0,screenY=0,resizable=no,dependent=yes&quo t;)
else
window.open("NOMBRE.htm",null,"widt h="+aW+",height="+aH+",left=0, top=0,
resizable=no");
}
}
//-->
</SCRIPT>
</head>
<body ... onload="showTool()">
</body>
</html>
Cambia NOMBRE.html por el nombre de la pagina que quieras ver a Fullscreen.
El Tamaño de pelicula debera ser (obviamente) 800 x 600 o 1024 x 768 dependiendo tus Gustos!!
Saludos!! :cantar: :cantar:
Saludos!!
<html><center><embed src="http://www.arbeitstudio.com/publi/banner.swf" height=60 width=400>
</embed></center></html> |