Português
<!--完整的HTML代码如下--> <html> <head> <title>精美的页面下雨效果的网页特效</title> </head> <body> <script language="JavaScript"> < !-- var não = 50; var velocidade = 1; var ns4up = (document.layers)? 1: 0; var ie4up = (document.all)? 1: 0; var s, x, y, sn, cs; var a, r, cx, cy; 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; } x = nova Matriz(); y = nova Matriz(); r = nova Matriz(); cx = nova Matriz(); cy = nova Matriz(); s = 8; for (i = 0; i < não; ++ i) { initRain(); if (ns4up) { if (i == 0) { document.write("<nome da camada="ponto"+ i +"" left="1" "); document.write("top="1" visibilidade="show"><font color="red">"); document.write(",</font></layer>"); } else { document.write("<nome da camada="ponto"+ i +"" left="1" "); document.write("top="1" visibilidade="show"><font color="red">"); document.write(",</font></layer>"); } }//mais javascript de http://www.downcodes.com else if (ie4up) { if (i == 0) { document.write("<div id="ponto"+ i +"" estilo ="POSIÇÃO: "); document.write("absoluto; Z-INDEX: "+ i +"; VISIBILIDADE: "); document.write("visível; SUPERIOR: 15px; ESQUERDA: 15px;"><font cor="vermelho">"); document.write(",</font></div>"); } else { document.write("<div id="ponto"+ i +"" style="POSIÇÃO: "); document.write("absoluto; Z-INDEX: "+ i +"; VISIBILIDADE: "); document.write("visível; SUPERIOR: 15px; ESQUERDA: 15px;"><font color="vermelho">"); document.write(",</font></div>"); } } } function initRain() { a = 6; r[i] = 1; sn = Math.sin(a); cs = Math.cos(a); cx[i] = Math.random() * doc_width + 1; cy[i] = Math.random() * doc_height + 1; x[i] = r[i] * sn + cx[i]; y[i] = cy[i]; } function makeRain() { r[i] = 1; cx[i] = Math.random() * doc_width + 1; cy[i] = 1; x[i] = r[i] * sn + cx[i]; y[i] = r[i] * cs + cy[i]; } function updateRain() { r[i] += s; x[i] = r[i] * sn + cx[i]; y[i] = r[i] * cs + cy[i]; } function raindropNS() { for (i = 0; i < não; ++ i) { updateRain(); if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) { makeRain(); doc_width = self.innerWidth; doc_height = self.innerHeight; } document.layers["ponto"+i].top = y[i]; document.layers["ponto"+i].esquerda = x[i]; } setTimeout("raindropNS()", velocidade); } function raindropIE() { for (i = 0; i < não; ++ i) { updateRain(); if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) { makeRain(); doc_width = document.body.clientWidth; doc_height = document.body.clientHeight; } document.all["ponto"+i].style.pixelTop = y[i]; document.all["ponto"+i].style.pixelLeft = x[i]; } setTimeout("raindropIE()", velocidade); } if (ns4up) { gota de chuvaNS(); } else if (ie4up) { raindropIE(); } --> </script> </body> </html>