Effetto fiocchi di neve, in homepage

« Older   Newer »
  Share  
7fede21
icon13  view post Posted on 14/12/2009, 18:43




Javascript prelevato dal Supporto Forumfree

Con questo script otterremo dei fiocchi di neve che cadono nella homepage del nostro forum.

Codice da copiare in Gestione codici HTML --> In cima al forum
CODICE
<!-- Prelevato nel Forum di Supporto di ForumFree.net e ForumCommunity.net  -->
<!--webbot bot=HTMLMarkup startspan -->
<script type="text/javascript" language="JavaScript1.2">   //Configure below to change URL path to the snow image
var snowsrc="http://image.forumfree.it/3/4/2/3/3/6/4/1225536874.png"
// Configure below to change number of snow to render
var no = 10;

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (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) {
 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[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 (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>");
   } else {
     document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src='"+snowsrc+"' border=\"0\"></layer>");
   }
 } else if (ie4up) {
   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 snowNS() {  // Netscape main animation function
 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();
     doc_width = self.innerWidth;
     doc_height = self.innerHeight;
   }
   dx[i] += stx[i];
   document.layers["dot"+i].top = yp[i];
   document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
 }
 setTimeout("snowNS()", 10);
}

function snowIE() {  // IE main animation function
 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();
     doc_width = document.body.clientWidth;
     doc_height = document.body.clientHeight;
   }
   dx[i] += stx[i];
   document.all["dot"+i].style.pixelTop = yp[i];
   document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
 }
 setTimeout("snowIE()", 10);
}

if (ns4up) {
 snowNS();
} else if (ie4up) {
 snowIE();
}

/* prelevato su [URL=http://www.grafikat.it]http://www.grafikat.it[/URL] */  

</script><!--webbot bot="HTMLMarkup" endspan -->
 
Top
Dark_KaramY
view post Posted on 14/12/2009, 20:20




Peccato che abbiamo verificato che funziona solo con Internet Explorer... almeno io uso safari e non funzionava...
 
Top
alonebynight
view post Posted on 14/12/2009, 20:25




nemmeno con firefox non va, poi io la trovo molto snervante XD
 
Top
igorbest
view post Posted on 14/12/2009, 21:52




Gli HTML di forumfree fanno cagare il cazzo
se riesco ve ne do uno io che vadi con tutti i browser
 
Top
3 replies since 14/12/2009, 18:43   628 views
  Share