Infinito Punto Alfa

Hasta los güevos de la 2.0, algo de diseño gráfico, web y concursos.

4 abril 2007
by Animatek
5 Comments

JavaScript :
Temporizador de cierre.

PLAIN TEXT JAVASCRIPT: <html> <head> <script type="text/JavaScript"> <!-- function closeWin(thetime) { setTimeout("window.close()", thetime); } //--> </script> </head> <body onload="closeWin('5000')"> Esta página se cerrara en 5 segundos. </body> </html> ejecutar ejemplo Bookmark on Delicious Digg this post Recommend on Facebook Share … Continue reading

12 marzo 2007
by Animatek
0 comments

CSS : JavaScript :
Ocultar/Mostrar Capas

PLAIN TEXT CSS: <style> .vis1 { visibility:visible; } .vis2 { visibility:hidden; } </style>   <img src="http://www.va-mas.com/blog/logo.jpg" name="oSphere" width="162" height="127" id="oSphere" class="vis1" /> <p onmouseover="oSphere.className='vis2'" onmouseout="oSphere.className='vis1'">Pon el cursor sobre este texto para hacer desaparecer la imagen.</p> ejecutar ejemplo Bookmark on Delicious … Continue reading