Este tema está cerrado, no puede editar mensajes o enviar nuevas respuestas  [ 22 mensajes ]  Ir a página Anterior  1, 2
[Tutorial] Efecto nieve en firefox. 
Autor Mensaje
Forero Fijo
Forero Fijo
Avatar de Usuario

Registrado: 01-30-2008, 3:17
Mensajes: 1813
Ubicación: U.S.A
Nota 
No lo tienes que colocar en ambos solo en la cabezera :-? ..pasame la url del copoy yo te pongo el codigo para que solo lo copies y pegues.

_________________
lı....ıllıllı....ıllıllı....ıllıllı... DJ .ıllıllı....ıllıllı....ıllıllı...ıl
Imagen

http://www.tu-webgratis.com


11-30-2008, 22:07
Perfil WWW
Equipo de Soporte
Equipo de Soporte
Avatar de Usuario

Registrado: 10-19-2006, 12:35
Mensajes: 4798
Ubicación: (España)
Nota 
Daniel, esta es la url del copo que tengo yo en mi foro www.odiseapsp.es , mira a ver si te sirve :lol:

http://www.odiseapsp.es/foro/images/xmas/snfl_01.gif

_________________
Imagen


La verdadera sabiduría está en reconocer la propia ignorancia.( Socrates )


11-30-2008, 22:14
Perfil
Forero Fijo
Forero Fijo
Avatar de Usuario

Registrado: 01-30-2008, 3:17
Mensajes: 1813
Ubicación: U.S.A
Nota Re: Efecto nieve en firefox
OK ya coloque la url del copo que te dio Odisea,, ahora copialo exacto como esta aqui y pegalo en contenido extra pero solo en la cabezera.

Código:
<script type="text/javascript">

 
  //Configure below to change URL path to the snow image
  var snowsrc="http://www.odiseapsp.es/foro/images/xmas/snfl_01.gif"
  // Configure below to change number of snow to render
  var no = 10;
  // Configure whether snow should disappear after x seconds (0=never):
  var hidesnowtime = 0;
  // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  var snowdistance = "pageheight";

///////////Stop Config//////////////////////////////////

  var ie4up = (document.all) ? 1 : 0;
  var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

   function iecompattest(){
   return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
   }

  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 (ns6up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = iecompattest().clientWidth;
    doc_height = iecompattest().clientHeight;
  }

  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  for (i = 0; i < no; ++ i) { 
    dx[i] = 0;                        // set coordinate variables
    xp[i] = Math.random()*(doc_width-50);  // set position variables
    yp[i] = Math.random()*doc_height;
    am[i] = Math.random()*20;         // set amplitude variables
    stx[i] = 0.02 + Math.random()/10; // set step variables
    sty[i] = 0.7 + Math.random();     // set step variables
      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>");
      } 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>");
      }
    }
  }

  function snowIE_NS6() {  // IE and NS6 main animation function
    doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
      doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
    for (i = 0; i < no; ++ i) {  // iterate for every dot
      yp[i] += sty[i];
      if (yp[i] > doc_height-50) {
        xp[i] = Math.random()*(doc_width-am[i]-30);
        yp[i] = 0;
        stx[i] = 0.02 + Math.random()/10;
        sty[i] = 0.7 + Math.random();
      }
      dx[i] += stx[i];
      document.getElementById("dot"+i).style.top=yp[i]+"px";
      document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; 
    }
    snowtimer=setTimeout("snowIE_NS6()", 10);
  }

   function hidesnow(){
      if (window.snowtimer) clearTimeout(snowtimer)
      for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
   }
      

if (ie4up||ns6up){
    snowIE_NS6();
      if (hidesnowtime>0)
      setTimeout("hidesnow()", hidesnowtime*1000)
      }

</script>




Espero te funcione.

_________________
lı....ıllıllı....ıllıllı....ıllıllı... DJ .ıllıllı....ıllıllı....ıllıllı...ıl
Imagen

http://www.tu-webgratis.com


11-30-2008, 22:17
Perfil WWW
Forero Fijo
Forero Fijo

Registrado: 06-01-2008, 13:00
Mensajes: 608
Ubicación: cadiz
Nota 
waaaaaaaaaaaa k xuloooo

gracias a los 2 xd



una pregunta como puedo poner que caigan mas copos y mas rapidos??


11-30-2008, 22:21
Perfil WWW
Forero Fijo
Forero Fijo
Avatar de Usuario

Registrado: 01-30-2008, 3:17
Mensajes: 1813
Ubicación: U.S.A
Nota Re: Efecto nieve en firefox
quieres una tormenta invernal en tu foro o que??...XD , solo tienes que reemplazar los datos que te indican!






Código:
<script type="text/javascript">

 
  //Configure below to change URL path to the snow image
  var snowsrc="[color=green]url del copo[/color]"  ----[color=orange]pones la url del copo[/color]
  // Configure below to change number of snow to render
  var no = [color=green]10[/color];------[color=orange]pones el numero de copos que quieres que caigan por vez[/color]
  // Configure whether snow should disappear after x seconds (0=never):
  var hidesnowtime = [color=green]0[/color];-------[color=orange]pones el tiempo que quieres que dure el efecto nieve,si lo dejas en 0 es ilimitado[/color]
  // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  var snowdistance = "pageheight";

///////////Stop Config//////////////////////////////////

  var ie4up = (document.all) ? 1 : 0;
  var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

   function iecompattest(){
   return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
   }

  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 (ns6up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = iecompattest().clientWidth;
    doc_height = iecompattest().clientHeight;
  }

  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  for (i = 0; i < no; ++ i) { 
    dx[i] = 0;                        // set coordinate variables
    xp[i] = Math.random()*(doc_width-50);  // set position variables
    yp[i] = Math.random()*doc_height;
    am[i] = Math.random()*20;         // set amplitude variables
    stx[i] = [color=green]0.02[/color] + Math.random()/10; // set step variables----[color=orange]velocidad de los copos que mas se mueven hacia los lados[/color]
    sty[i] = [color=green]0.7[/color] + Math.random();     // set step variables---[color=orange]velocidad de caida[/color]
      if (ie4up||ns6up) {
      if (i == 0) {
        document.write("<div><a><img></a></div>");
      } else {
        document.write("<div><img></div>");
      }
    }
  }

  function snowIE_NS6() {  // IE and NS6 main animation function
    doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
      doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
    for (i = 0; i <no> doc_height-50) {
        xp[i] = Math.random()*(doc_width-am[i]-30);
        yp[i] = 0;
        stx[i] = [color=green]0.02[/color] + Math.random()/10;-----[color=orange]velocidad de los copos que se mueven a los lados[/color]
        sty[i] = [color=green]0.7[/color] + Math.random();---[color=orange]velocidad de caida[/color]
      }
      dx[i] += stx[i];
      document.getElementById("dot"+i).style.top=yp[i]+"px";
      document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; 
    }
    snowtimer=setTimeout("snowIE_NS6()", 10);
  }

   function hidesnow(){
      if (window.snowtimer) clearTimeout(snowtimer)
      for (i=0; i<no>0)
      setTimeout("hidesnow()", hidesnowtime*1000)
      }

</script>



_________________
lı....ıllıllı....ıllıllı....ıllıllı... DJ .ıllıllı....ıllıllı....ıllıllı...ıl
Imagen

http://www.tu-webgratis.com


11-30-2008, 22:26
Perfil WWW
Forero Fijo
Forero Fijo

Registrado: 06-01-2008, 13:00
Mensajes: 608
Ubicación: cadiz
Nota 
hombre tanto como una tormenta no pero...

tal y como esta españa ultimamente con viento frio y nieve no me kiero kedar atras en mi foro xd

gracias de nuevo


11-30-2008, 22:30
Perfil WWW
Forero Experto
Forero Experto
Avatar de Usuario

Registrado: 10-28-2007, 1:40
Mensajes: 2071
Ubicación: Argentina
Nota 
Hola!!
Por cualquier pregunta, duda ó inquietud sobre tutoriales phpbb2 por favor hacerlo
EN ESTE APARTADO
Muchas Gracias!!

Saludos!!

_________________
LA CAFETERIA !


12-02-2008, 2:16
Perfil WWW
Mostrar mensajes previos:  Ordenar por  
Este tema está cerrado, no puede editar mensajes o enviar nuevas respuestas   [ 22 mensajes ]  Ir a página Anterior  1, 2

¿Quién está conectado?

Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 0 invitados


No puede abrir nuevos temas en este Foro
No puede responder a temas en este Foro
No puede editar sus mensajes en este Foro
No puede borrar sus mensajes en este Foro
No puede enviar adjuntos en este Foro

Saltar a:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
Traducción al español por Huan Manwë para phpbb-es.com
phpBB SEO
[ Time : 0.078s | 13 Queries | GZIP : Off ]