MSN Home  |  My MSN  |  Hotmail
Sign in to Windows Live ID Web Search:   
go to MSNGroups 
Free Forum Hosting
 
Important Announcement Important Announcement
The MSN Groups service will close in February 2009. You can move your group to Multiply, MSN’s partner for online groups. Learn More
WHITE CANVAS[email protected] 
  
What's New
  
    
  MESSAGES  
  General  
  PRACTICE HERE  
  BACKGROUNDS  
  Backgrounds2  
  CALENDAR  
  Christmas Backs  
  Clock/  
  COLOR CHARTS  
  Easter Backs  
  E-CARDS  
  ERASE  
  FAQ'S  
  FONTS  
  FRAMES  
  FUNNY SITES  
  GIF SITES  
  HOLIDAY SITES  
  INSTRUCTIONS  
  LINKABLE SITES  
  MEMBERS SITES  
  TABLE CODES  
  TESTBEDS  
  TOOLS  
  TUTORIALS  
  WAVS  
  Backgrounds  
  Favorites File 1  
  Favorites File 2  
  Favorites File 3  
  Favorites File 4  
  SIGNATURES  
  Snow/Rain Floaters  
  PSP Work  
  PSP Work 2  
  Home  
  
  
  Tools  
 
PRACTICE HERE : Christmas2
Choose another message board
 
     
Reply
 Message 1 of 2 in Discussion 
From: MSN NicknameOucutie3  (Original Message)Sent: 12/20/2003 6:44 AM
<html>
<head><title>Rain/Snow effect</title>
<style>
.drop { position: absolute; width: 3; filter: flipV(), flipH(); font-size: 40; color: blue }
</style>
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 = 30 //How many drops/snowflakes?
/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=2; 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>
</head>








































language="javascript">
if (document.all){
drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array()
ly = "document.all[\'"; st = "\'].style"
for(make = 0; make < drops; make++){
document.write('
'+sym+'
');
drop[make] = eval(ly+'drop'+make+st);
maxx = document.body.clientWidth-40
maxy = document.body.clientHeight-40
xx[make] = Math.random()*maxx;
yy[make] = -100-Math.random()*maxy;
drop[make].left = xx[make]
drop[make].top = yy[make]
mv[make] = (Math.random()*5)+speed/4;
drop[make].fontSize = (Math.random()*10)+20;
if(snow){col = 'white'}else{col = 'blue'}
drop[make].color = col;
}
window.onload=moverain
}
</script>
</body>
</html>































First  Previous  2 of 2  Next  Last 
Reply
 Message 2 of 2 in Discussion 
From: MSN NicknameOucutie3Sent: 12/20/2003 6:45 AM
<html> <head><title>Rain/Snow effect</title> <style> .drop { position: absolute; width: 3; filter: flipV(), flipH(); font-size: 40; color: blue } </style> 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 = 30 //How many drops/snowflakes? /**************Do not need to change anything below***********/ if(snow){sym = snowsym; speed=2; 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> </head>




























language="javascript"> if (document.all){ drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array() ly = "document.all[\'"; st = "\'].style" for(make = 0; make < drops; make++){ document.write('
'+sym+'
'); drop[make] = eval(ly+'drop'+make+st); maxx = document.body.clientWidth-40 maxy = document.body.clientHeight-40 xx[make] = Math.random()*maxx; yy[make] = -100-Math.random()*maxy; drop[make].left = xx[make] drop[make].top = yy[make] mv[make] = (Math.random()*5)+speed/4; drop[make].fontSize = (Math.random()*10)+20; if(snow){col = 'white'}else{col = 'blue'} drop[make].color = col; } window.onload=moverain } </script> </body> </html>