Avatar Image
Usuario habitual
Usuario habitual

Para que no creen tntos temas aqui les dejo codigos.

Cargando.. En la web

Codigo:
<!-- Copiar dentro del tag HEAD -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Por: Gilbert Davis -->

<!-- Begin
function loadImages() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('hidepage').style.visibility = 'hidden';
}
else {
if (document.layers) { // Netscape 4
document.hidepage.visibility = 'hidden';
}
else { // IE 4
document.all.hidepage.style.visibility = 'hidden';
}
}
}
// End -->
</script>
</HEAD>

<!-- Copiar dentro del tag BODY -->


En la vrevedad pondre mas pregunten y les doy su codigo

<BODY OnLoad="loadImages()">

<div id="hidepage" style="position: absolute; left:5px; top:5px; background-color: #FFFFCC; layer-background-color: #FFFFCC; height: 100%; width: 100%;">

<table width=100%><tr><td>Page loading ... Please wait.</td></tr></table></div>

<!-- put the rest of your page contents here -->

</BODY>


O

Codigo:
<html>
<head>
<!-- PRIMER PASO: Copiar dentro del tag HEAD -->
<script language="JavaScript"><!--

// -- Precarga de HTML creado por Sonia Web
// -- contacto: javascript@iespana.es
// -- web: http://soniaweb.d2g.com
// -- web: http://www.webtutorial.com.ar

ns=document.layers
ie=document.all

function esconde() {
if (ie) precarga.style.visibility="hidden";
if(ns) document.pregarga.visibility="hide";
}
// -->
</script>

<style>
#precarga{position:absolute; width:100%; height:100%; top:0; left:0}
</style>
</head>

<body>
<!-- SEGUNDO PASO: Copiar dentro del tag BODY -->
<body onload="esconde();">
<script language="JavaScript">
if(ie || ns) document.write('<div id="precarga" align="center"><br>Esperen por favor...</div>');
</script>
</body>
</html>


Foto que cambie cada Dìa



Codigo:
<script type="text/javascript" language="JavaScript"><!--

var now = new Date ();
var day = now.getDay();

var direc_imagen;
var alt_imagen;

// Este script es una corrección y ampliación de uno
// que aparece en http://mundojavascript.com

// Por el Suscriptor Justiciero =^·^=


function abrir_foto(imagen)
{
. window.open('imagenes/'+imagen, 'ventana_foto', 'HEIGHT=(alto), resizable=yes, scrollbars=yes, WIDTH=(ancho)');
}


// RECUERDA - LA SEMANA EMPIEZA EN DOMINGO

if(day == 0)
{
. direc_imagen = "imagen_domingo.jpg";
. alt_imagen = "Domingo";
}

if(day == 1)
{
. direc_imagen = "imagen_lunes.jpg";
. alt_imagen = "Lunes";
}

if(day == 2)
{
. direc_imagen = "imagen_martes.jpg";
. alt_imagen = "Martes";
}

if(day == 3)
{
. direc_imagen = "imagen_miercoles.jpg";
. alt_imagen = "Miércoles";
}

if(day == 4)
{
. direc_imagen = "imagen_jueves.jpg";
. alt_imagen = "Jueves";
}

if(day == 5)
{
. direc_imagen = "imagen_viernes.jpg";
. alt_imagen = "Viernes";
}

if(day == 6)
{
. direc_imagen = "imagen_sabado.jpg";
. alt_imagen = "Sábado";
}


// El script supone que la imagen miniatura está en una
// carpeta llamada "thumbnails"

document.write('<a href="imagenes/' + direc_imagen + '" target="ventana_foto" onclick="abrir(direc_imagen);return false">');
document.write('<img src="imagenes/thumbnails/' + direc_imagen + '" alt="' + alt_imagen + '">');
document.write('</a>');

// --></script>



Contador con cokie

Codigo:
<SCRIPT language=JavaScript>
<!--
// Boolean variable specified if alert should be displayed if cookie exceeds 900KB
var caution = false

// name - name of the cookie
// value - value of the cookie
// [expires] - expiration date of the cookie (defaults to end of current session)
// [path] - path for which the cookie is valid (defaults to path of calling document)
// [domain] - domain for which the cookie is valid (defaults to domain of calling document)
// [secure] - Boolean value indicating if the cookie transmission requires a secure transmission
// * an argument defaults when it is assigned null as a placeholder
// * a null placeholder is not required for trailing omitted arguments
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "")
if (!caution || (name + "=" + escape(value)).length <= 4000)
document.cookie = curCookie
else
if (confirm("Cookie exceeds 4KB and will be cut!"))
document.cookie = curCookie
}

// name - name of the desired cookie
// * return string containing value of specified cookie or null if cookie does not exist
function getCookie(name) {
var prefix = name + "="
var cookieStartIndex = document.cookie.indexOf(prefix)
if (cookieStartIndex == -1)
return null
var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
if (cookieEndIndex == -1)
cookieEndIndex = document.cookie.length
return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}

// name - name of the cookie
// [path] - path of the cookie (must be same as path used to create cookie)
// [domain] - domain of the cookie (must be same as domain used to create cookie)
// * path and domain default if assigned null or omitted if no explicit argument proceeds
function deleteCookie(name, path, domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT"
}
}

// date - any instance of the Date object
// * you should hand all instances of the Date object to this function for "repairs"
// * this function is taken from Chapter 14, "Time and Date in JavaScript", in "Learn Advanced JavaScript Programming"
function fixDate(date) {
var base = new Date(0)
var skew = base.getTime()
if (skew > 0)
date.setTime(date.getTime() - skew)
}

var now = new Date()
fixDate(now)
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000)
var visits = getCookie("counter")
if (!visits)
visits = 1
else
visits = parseInt(visits) + 1
setCookie("counter", visits, now)
document.write(" " + visits)

// -->
</SCRIPT>


Chatear con el msn
Codigo:
<!-- BEGIN CUTTING -->
</p>
<form name="form" action="javascript:openwindow()">
<div align="center">
<p><span class="titulotablas"><b>Abrir conversación en
el MSN co<font color="#FFFFFF">n</font></b></span><font color="#FFFFFF"><br>
<span class="enlacescuerpo"> (debes tener tu MSN abierto)</span></font><br>
<input type="text" name="address" value="usuario@hotmail.com">
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</div>
</form>
<div align="center">
<object id=objMessengerApp height=0 codetype=application/x-oleobject width=0
classid=clsid:FB7199AB-79BF-11d2-8D94-0000F875C541>
</object>
<script language="JavaScript">
these comments here
function openwindow()
{
objMessengerApp.LaunchIMUI(document.form.address.value);
}
</script>



Prueba codigos

Codigo:
Insertar dentro del <head> en vista HTML<script>
function stoperror(){
return true
}
window.onerror=stoperror
</script>
<script LANGUAGE="JavaScript">
<!-- Comienza
function verHTML(form) {
var inf = form.codigo.value;
win = open("","DisplayWindow","toolbar=no,directories=no,menubar=no,location=no,directories=no");
win.document.write("" + inf + "");
}
// Termina -->
</script>
Pégalo como Pegado especial como html en vista normal
<td width="100%">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><small><b><font face="Arial">JAVASCRIPT</font></b></small></td>
</tr>
<tr>
<td width="100%">
<p align="center"><small><font face="Arial">Probar Código </font></small></p>
</td>
</tr>
<tr>
<td width="100%">
<hr noshade size="1" color="#000000">
</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="10" cellpadding="0">
<tr>
<td width="100%"></td>
</tr>
</table>
<div align="center">
<center>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<form target="_self">
<p align="center"><textarea name="codigo" cols="73" rows="14">


Pondre mas prgunten y se los digo

Avatar Image
Usuario habitual
Usuario habitual

Perdon el primero de cargando en la web es sin el texto grande osea:

Codigo:
<!-- Copiar dentro del tag HEAD -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Por: Gilbert Davis -->

<!-- Begin
function loadImages() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('hidepage').style.visibility = 'hidden';
}
else {
if (document.layers) { // Netscape 4
document.hidepage.visibility = 'hidden';
}
else { // IE 4
document.all.hidepage.style.visibility = 'hidden';
}
}
}
// End -->
</script>
</HEAD>

<!-- Copiar dentro del tag BODY -->

<BODY OnLoad="loadImages()">

<div id="hidepage" style="position: absolute; left:5px; top:5px; background-color: #FFFFCC; layer-background-color: #FFFFCC; height: 100%; width: 100%;">

<table width=100%><tr><td>Page loading ... Please wait.</td></tr></table></div>

<!-- put the rest of your page contents here -->

</BODY>
ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
TemaUsuariosRespuestasVisitasActividad
Por: , el 27/Mar/2004, 13:49
ritex12kMar/04