My last post was thrown out with the change.
Let’s try this again!
I am creating my first site (not uploaded yet) and I have a few questions I hope you can help with. On my “Fun Page” I would like to include snow, rain (from Dynamic Drive), fall leaves and lake effect (thinking of using Anfe). My questions are #1, no matter what I do I cant get the image to show in snow just the place holders. I have checked my path to the image file as in example-
//Configure below to change URL path to the snow image
var snowsrc = "E:\Documents and Settings\kevin\My Documents\My Webs\homesite1\images\page4\snow[3].gif"
// Configure below to change number of snow to render
var no = 20;
What simple thing am I missing?
Question #2, can I cause them not to auto start when the page opens to enable user choice pursuant to question #3? If not can I timeout the effects? Example from rain (from Dynamic Drive)- 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')}
Question #3, I would like to use buttons/links to activate and deactivate the effects per user choice. Can this be done and if so how?
If needed I can post more code/information.
Edit: after the first problems and now that this post has been moved to an unbrowsed forum I don't have much hope for it.... time to look for another forum to hope to get some help from and in time be a real contributor to like the other forums I subscribe to.

Let’s try this again!

I am creating my first site (not uploaded yet) and I have a few questions I hope you can help with. On my “Fun Page” I would like to include snow, rain (from Dynamic Drive), fall leaves and lake effect (thinking of using Anfe). My questions are #1, no matter what I do I cant get the image to show in snow just the place holders. I have checked my path to the image file as in example-
//Configure below to change URL path to the snow image
var snowsrc = "E:\Documents and Settings\kevin\My Documents\My Webs\homesite1\images\page4\snow[3].gif"
// Configure below to change number of snow to render
var no = 20;
What simple thing am I missing?
Question #2, can I cause them not to auto start when the page opens to enable user choice pursuant to question #3? If not can I timeout the effects? Example from rain (from Dynamic Drive)- 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')}
Question #3, I would like to use buttons/links to activate and deactivate the effects per user choice. Can this be done and if so how?
If needed I can post more code/information.
Edit: after the first problems and now that this post has been moved to an unbrowsed forum I don't have much hope for it.... time to look for another forum to hope to get some help from and in time be a real contributor to like the other forums I subscribe to.
Comment