porreta_820
Usuario Novato
Usuario Novato

a ver os comento...

en mi pagina quiero ke salgan los copos de nieves pues bien a mi se me ven, pero el problema esta en que el fondo es todo blanco y no se nada de la web.
puede ser que haya puesto el codigo en mal lugar, si es asi donde lo tengo que poner??

cotenstar por favor

saludos

Avatar Image
User 390661
@man / @woman
@man / @woman

k yo sepa ese codigo va dentro del <body>
(javascript aki)

</body> y no deberia darte ningun problema revisa si no tienes una imagen de fondo en la pagina si es asi.cheka k este bien escrita la url de la imagen(sin espacios,mayusculas,etc)nombre exactoSonrisa Gigante

Avatar Image
Moderador
Moderador

cual es la web ?

De interés Público
NO AGREGARME COMO AMIGO, gracias
Asuntos claros en los temas
Consultas en temas no afines serán borradas
Tratemos de expresarnos bien, que así da gusto leer


porreta_820
Usuario Novato
Usuario Novato

haciendo pruebas ya lo e puesto en body y nada y no tengo ninguna foto de fondo. es un color normal.

a ver si lo soluciono....

Avatar Image
User 390661
@man / @woman
@man / @woman

Creo que hibo algo que no te pedí para ayudarte, el código este es el código al que yo me refiero, no sé si el tuyo sea diferente

Codigo:

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#000000" text="#ffffff">
<p align="center"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">
<script language="JavaScript1.2">

/*
Snow Effect Script
Submitted by Altan d.o.o. (snow@altan.hr, http://www.altan.hr/snow/index.html)
Permission granted to Dynamicdrive.com to feature script in archive
For full source code to this script, visit http://dynamicdrive.com
*/


//Configure below to change URL path to the snow image
var snowsrc="snow.gif"
// Configure below to change number of snow to render
var no = 50;

var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;

if (ns4up||ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}

dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();

for (i = 0; i < no; ++ i) {
dx = 0; // set coordinate variables
xp = Math.random()*(doc_width-50); // set position variables
yp = Math.random()*doc_height;
am = Math.random()*20; // set amplitude variables
stx = 0.02 + Math.random()/10; // set step variables
sty = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><a href=\"http://dynamicdrive.com/\"><img src='"+snowsrc+"' border=\"0\"></a></layer>&quotGiño;
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src='"+snowsrc+"' border=\"0\"></layer>&quotGiño;
}
} else if (ie4up||ns6up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"></a></div>&quotGiño;
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"></div>&quotGiño;
}
}
}

function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp += sty;
if (yp > doc_height-50) {
xp = Math.random()*(doc_width-am-30);
yp = 0;
stx = 0.02 + Math.random()/10;
sty = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx += stx;
document.layers["dot"+i].top = yp;
document.layers["dot"+i].left = xp + am*Math.sin(dx);
}
setTimeout("snowNS()", 10);
}

function snowIE_NS6() { // IE and NS6 main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp += sty;
if (yp > doc_height-50) {
xp = Math.random()*(doc_width-am-30);
yp = 0;
stx = 0.02 + Math.random()/10;
sty = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth : document.body.clientWidth;
doc_height = ns6up?window.innerHeight : document.body.clientHeight;
}
dx += stx;
if (ie4up){
document.all["dot"+i].style.pixelTop = yp;
document.all["dot"+i].style.pixelLeft = xp + am*Math.sin(dx);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp;
document.getElementById("dot"+i).style.left=xp + am*Math.sin(dx);
}
}
setTimeout("snowIE_NS6()", 10);
}

if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}

</script>
</font></p>
<p align="center">&nbsp;</p>
<table width="700" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Ahora
esta nevando, para cambiar el número de copos de nieve hay que cambiar
el valor de "var no = 5;" al principio. Este c&oacute;digo pertenece a
&quot;Altan d.o.o.&quot; y hay que copiarlo tal cual, respetando su copyright.
La imagen del copo de nieve se puede cambiar por cualquier otra (por ejemplo
una hoja para el oto&ntilde;o). </font></div>
</td>
</tr>
</table>
<p align="center">&nbsp;</p>
</body>
</html>


Intenta con ese, te recomiendo ponerlo en un archivo .js asi te ahorras lineas de código y no tienes que escribirlo todo de nuevo Sonrisa Gigante
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 17/Dic/2004, 00:56
IMiLyI chavp Hectorc Torry_II davdusa1922kDec/04
Por: , el 20/Ene/2017, 18:28
escribiente02kJan/17