View Full Version : falling snow


Crytaltear
10-05-2004, 03:07 AM
do you know the code like this on3.... http://www.leoplanet.net/eyecandy.html

thanx a lot!

JiNgLeBeLLz77
10-05-2004, 05:08 AM
this is the code, but i'm not sure if it'll work or not...

<script language="javascript">

//Rain/Snow effect- By Craig Blanchette Craiga.topcities.com
//Script featured on Dynamic Drive
//Visit http://www.dynamicdrive.com for this script and more

snow = true; // false-rain; true-snow
snowsym = " * " //These are the symbols for each
rainsym = " ' " //You can put images here.
howmany = 10 //How many drops/snowflakes?

/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=1; angle=10; drops=howmany}
else{sym = rainsym; speed=50; drops=howmany; angle=6}
movex = -speed/angle; movey = speed; count = 0;

function moverain(){
for(move = 0; move < drops; move++){
xx[move]+=movex; yy[move]+=mv[move];
hmm = Math.round(Math.random()*1);
if(xx[move] < 0){xx[move] = maxx+10;}
if(yy[move] > maxy){yy[move] = 10;}
drop[move].left = xx[move]
drop[move].top = yy[move]+document.body.scrollTop;
}setTimeout('moverain()','1')}

</script>

Crytaltear
10-05-2004, 09:16 PM
thanx, but it not working tho...

JiNgLeBeLLz77
10-06-2004, 03:16 AM
yeah... it might have been because xanga disabled the code... try this code. click under "falling objects"

http://www.xangascripts.tk/

Crytaltear
10-06-2004, 08:17 PM
thanx, but do you know the url for the snow in the website in http://www.leoplanet.net/eyecandy.html...if you don't know, then do you know any other snow url...thanx a lot!

JiNgLeBeLLz77
10-07-2004, 05:12 AM
uhm... i'm not sure about the one from the leoplanet site... but these is a snowflake from this website... search for "falling snow" on the homepage (lissaexplains.com)

Crytaltear
10-07-2004, 08:39 PM
okay...thanx a lot!

JiNgLeBeLLz77
10-08-2004, 03:15 AM
you're welcome :D