Use this script:
http://www.dynamicdrive.com/dynamicindex3/leaves.htm
substituting various snowflake images for the various leaf ones. Better yet, use this updated version:
http://home.comcast.net/~jscheuer1/s...s_bidirect.htm
Use your browser's "View Source" to get the code.
I know, the images are all the same and they're going up. However, you can configure multiple images and/or change the direction in this section:
Code:
var dir=-1 // Set 'falling' direction (1 for down, -1 for up)
var speed=60 // 12 to whatever (60 is pretty slow) higher numbers are slower
var Amount=8; // Smoothness depends on image file size, the smaller the size the more you can use!
var sway=10 // Set amount of left/right swaying of objects (default=10), higher numbers produce more sway
//Pre-load your image(s) below!
grphcs=new Array(6)
Image0=new Image();
Image0.src=grphcs[0]="bubble.gif";
Image1=new Image();
Image1.src=grphcs[1]="bubble.gif"
Image2=new Image();
Image2.src=grphcs[2]="bubble.gif"
Image3=new Image();
Image3.src=grphcs[3]="bubble.gif"
Image4=new Image();
Image4.src=grphcs[4]="bubble.gif"
Image5=new Image();
Image5.src=grphcs[5]="bubble.gif"
Bookmarks