02/05/2005, 14:12
|
| Usuario no validado | | Fecha de Ingreso: mayo-2001 Ubicación: Zaragoza
Mensajes: 1.304
Antigüedad: 23 años, 6 meses Puntos: 25 | |
Hola.
A ver si te sirve esto:
Código:
<script>
/******************************
Capa estática. Por Carlitos. [email protected]
Si usas este script, deja intactas estas líneas (créditos). Vale?
También te agradecería un e-mail con tus comentarios.
*******************************/
function inicio()
{
NS6 = (document.getElementById&&!document.all)
IE = (document.all)
iniY = document.getElementById('capa').style.top
cursor()
}
function cursor()
{
if (NS6) coorY = window.pageYOffset
if (IE) coorY = document.body.scrollTop
document.getElementById('capa').style.top = coorY + parseInt(iniY)
setTimeout("cursor()",1)
}
</script>
<body onload="inicio()">
<div id="capa" style="position:absolute; left:0px; top:0px; z-index:2; background-color: #FFFFCC; layer-background-color: #FFFFCC; border: 1px none #000000;">
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111">
<tr>
<td ><font size="2">Selecciona opción</font></td>
</tr>
</table>
</div>
<!-- -->
<p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<p align="center"><b>Parte inferior de la pantalla</b></p>
</body>
|