What's new
Guest viewing is limited

JavaScript falling image wanted/needed

tleit004

New Talker
PF Member
Messages
4
Highlights
0
Reaction score
0
Points
33
Peak Coin
0.000000¢
DB Transfer
0.000000¢
Hi i was not sure if this would be accepted or not under this category but this one was the closest to JavaScript, and i know i don't have any points but JavaScript wasn't under the list.i do have 2 dollars on paypal. or you can have a spot of your choice on my forum with 200 contest score to start out. ok, here is my request. On my forum i wanted a javascript code like the snow falling but its leaves that rock back and forth and only show up on the side of the page(probley like edge then 100 over on both left and right).
 
So you want leaves falling but only on 100 px from the left and right sides? I don`t know but that would look odd on a bigger or smaller monitor then yours. If you have a fixed width style or page, you will get the same 100px on both sides, even if you have a 1680 width monitor. That would look odd if your page or style is about 1000 pixel wide. Than you will get 400px remaining which is still only the background, but no leaves falling there. Or if your monitor is a good ol` styler and only 1024px wide, than you would get the leaves on the content too.

[snow2][/snow2]

What I would suggest is to use the typical snow effect, change the pictures and change this line in the code:

Code:
var zIndex = 0; // CSS stacking order applied to each snowflake
To:
Code:
var zIndex = -1; // CSS stacking order applied to each snowflake

That way, you will get the images only under the main part of the page. You can see an example here in this topic.

P.S.: I moved your topic into the support section cause the forum you posted this in, is originally for phpBB requests.
 
Back
Top