Log in

View Full Version : Snow & other Effects for your forum


blackpheonix
11-02-2005, 10:00 PM
[Original Source & Files Copyrighted to ? Dynamic Drive]

UPDATED:

Ok i have changed the code a little bit and added some images to the zip folder at current i havent added a menu in admin CP to globally turn this off
when i manage to figure out the new hooks system ill have a bash at doing it for you :).

You can easily add your own images just upload your image to the effects folder which should be located
in your forums image folder for example /forum/images/misc/effects/
Then change the code to point to the new image name.

The images will only work with the Forum Effects code


ok lets get started :).

first goto admincp > styles & templates > edit templates and locate header and edit
at the very very top before anything else. Add one of the following codes,



For small snowflakes add this code



<!-- Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->
<script type="text/javascript" src="/forum/images/misc/effects/snow.js">
</script>
<!-- /Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->



find and edit this line

src="/forum/images/misc/effects/snow.js

point it to your forum image path

************************************************** **************************

For big snowflakes and other effects add this code



<!-- Forum Effects by Blackpheonix ? to Dynamic Drive -->

<script language="JavaScript1.2">


//Configure below to change URL path to the snow image
var snowsrc="/forum/images/misc/effects/effect(*).gif"
// Configure below to change number of snow to render
var no = 10;

var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;

if (ns4up||ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}

dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();

for (i = 0; i < no; ++ i) {
dx = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><a href=\"http://dynamicdrive.com/\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src='"+snowsrc+"' border=\"0\"><\/layer>");
}
} else if (ie4up||ns6up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
}
}
}

function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", 10);
}

function snowIE_NS6() { // IE and NS6 main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth : document.body.clientWidth;
doc_height = ns6up?window.innerHeight : document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i]+'px';
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+'px';
}
}
setTimeout("snowIE_NS6()", 10);
}

if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}

</script>
<!-- /Forum Effects by Blackpheonix ? to Dynamic Drive -->



find and edit this line

var snowsrc="/forum/images/misc/effects/effect(*).gif"

point it to your forum image path and delete the (*) and put a number from 1-18 (make sure there is no space for example effect1) to use the pre-added images.

************************************************** **************************

now download forum_effects.zip and upload the effects folder to your forum image path for example /forum/images/misc/


************************************************** **************************

Few addons for this modification.

************************************************** **************************

Let your forum members choose weather or not to display the effect. - Thanks to SHANE-D-PAIN


Go to AdminCP => User Profile Fields => Add new User Profile field => Single Select Menu

Title: View Forum Effects
Description: Choose yes to view forum effects.
Options:
Yes
No
Set Default: Yes, but No First Blank Option
Editable By User: Yes
Display Page: Options: Other Options

Write down your field# . i.e field5


Change X to the Field id.


Just remember to wrap the code with the if tags provided.



<if condition="$bbuserinfo[fieldX] != 'No'">
Add The Code Here
</if>


For Example:


<if condition="$bbuserinfo[field5] != 'No'">
<!-- Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->
<script type="text/javascript" src="/forum/images/misc/effects/snow.js">
</script>
</if>
<!-- /Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->


************************************************** **************************

Make modification optional per usergroup. - Thanks to SHANE-D-PAIN


<if condition="is_member_of($bbuserinfo, array(1,2,3,4,5))">
Add The Code Here
</if>


Where 1,2,3,4 & 5 are the ids of the Usergroups that this is to be displayed to.

For Example:


<if condition="is_member_of($bbuserinfo[usergroupid], array(1,2,3,4,5))">
<!-- Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->
<script type="text/javascript" src="/forum/images/misc/effects/snow.js">
</script>
</if>
<!-- /Snow Effect(Small SnowFlakes) Effect by Blackpheonix ? to Dynamic Drive -->


************************************************** **************************

To Save on the heavy CPU usage that this mod uses follow the instructions below - Thanks to Solitary Seraph

Please Note, This is for the small snowflakes and not the big ones.

Edit the snow.js with any type of editor (ie. notepad).



var num = 20; //Number of flakes
var timer = 75; //setTimeout speed. Varies on different comps
var enableinNS6 = 1 //Enable script in NS6/Mozilla? Snow animation could be slow in those browsers. (1=yes, 0=no).


The first two will let you change it, Solitary Seraph changed it to 20/75, and it dropped to about 50% cpu usage for his/her members with bad computers.
Keep tweaking with it and eventually it should work nicely for everyone, or you can turn it off with the last bit, for the mozilla users.

************************************************** **************************

I would also like to thank the following ppl :)

Smiry Kin's - for the nicer snow image.

************************************************** **************************

PLEASE NOTE: Big snowflakes and other effects may slow down your board and may not be viewable via firefox browsers. The small flakes should be ok and can be viewed by firefox.

hope u enjoy!

[I][U]:) Please Dont forget to click Install :) (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=99991)

[Original & Files Copyrighted to ? Dynamic Drive]

Cyricx
11-03-2005, 01:02 PM
Awesome :)

* Cyricx installs!

SnowBot
11-03-2005, 03:30 PM
Ur a star mate, thanks :)

Holidazed
11-03-2005, 06:35 PM
This is awesome. Now I need a Christmas style to put it on

phonexpo
11-03-2005, 07:07 PM
I have the hack in, but I just have red X's for the snow.gif ??? www.phonexpo.net/index.php

Detomah
11-03-2005, 07:11 PM
Ohh, nice, looks like a great Christmas style effect for me to use ina few weeks. :)

I've put *installed* now, but wont actually use this till December though. :)

jugo
11-03-2005, 07:31 PM
I have the hack in, but I just have red X's for the snow.gif ??? www.phonexpo.net/index.php



LMAO...Check the path for the snow flakes....

LMAO..just think about it.

ERROR 404...Weather cannot find snowflake specified.


LMAO!!!!!

phonexpo
11-03-2005, 07:36 PM
LMAO...Check the path for the snow flakes....

LMAO..just think about it.


LMAO!!!!!

File path is http://www.phonexpo.net/images/misc/snow.gif

phonexpo
11-03-2005, 07:52 PM
LMAO...Check the path for the snow flakes....

LMAO..just think about it.


LMAO!!!!!

Have you stopped laughing yet? I need to fix this please.

Cyricx
11-03-2005, 07:54 PM
Deto, just swap out the gif for something like a falling leaf gif or something :)

I can't wait til next halloween, I got a kick butt flying witch gif I'm going to use LOL!

ggiersdorf
11-03-2005, 09:18 PM
Very Nice man, but one question could this be made to be turned on/off through the admin CP and not through file edits. or Set to schedule like turn it on randomly etc so It does not get old fast..?

Mabey we can all work on some different types of Icons to float around Im pretty good with Photoshop but my coding skills lack :P Id be willing to work on these

heck even mabey add in a random gif from specificed folder to mix it up.

Rocol
11-04-2005, 09:08 AM
Nice one .. will save for Xmas :cool:

davidw
11-04-2005, 10:34 AM
Is there any way to change the path (rather than /forum) in the hack? I can do it manually, but not everyone has it set up in their /forum directory. Which is what is causing some problems (me for the first 2 seconds).
Awesome hack, btw. I'm going to play around with leaves later. :)

Reeve of shinra
11-04-2005, 11:14 AM
does it play well in firefox?

lairnoc
11-04-2005, 12:14 PM
it works fine for me only the big snow not :) thnx for the snow

Watson
11-04-2005, 03:10 PM
cool. Will install this in December!

evenmonkeys
11-04-2005, 04:21 PM
Very nice! Works in all browsers! Anyone have any ideas how I can make this optional per usergroup without new styles or usergroups?

SHANE-D-PAIN
11-04-2005, 05:15 PM
You could add conditionals around the code to allow for certain usergroups to see it.

I will use this at xmas! :)

SHANE-D-PAIN
11-04-2005, 05:29 PM
Anyone have any ideas how I can make this optional per usergroup without new styles or usergroups?

<if condition="is_member_of($bbuserinfo[usergroupid], array(1,2,3,4,5))">
the code here
</if>

Where 1,2,3,4 & 5 are the ids of the Usergroups that this is to be displayed to.

If you want to make it so the users themselves can view to see it you could create a new user profile field and use that to allow them to choose. Infact im going to get the code for it. :P - Just incase anyone wants it.

SHANE-D-PAIN
11-04-2005, 05:56 PM
Right, here goes, I have never posted anything like this so be gentle :P

Go to AdminCP => Profile Fields => Add new Profile field => Single Select Menu

Title: View Xmas Snow Flakes?
Description: Choose yes to have little Christmas Snowflakes Floating around.
Options:
No
Yes
Set Default: Yes, but No First Blank Option
Editable By User: Yes
Display Page: Options: Other Options

Write down your field# . i.e field6


Here is the code, I am using the small snowflakes as example code.


<if condition="$bbuserinfo[fieldX] != 'No'">
<!-- Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->
<script type="text/javascript" src="/forum/images/misc/snow.js">
</script>
<!-- /Snow Effect(Small SnowFlakes) by Blackpheonix ? to Dynamic Drive -->
</if>

Change X to the Field id.


Just remember to wrap the code with the if tags provided. :)

<if condition="$bbuserinfo[fieldX] != 'No'">

</if>


I tested this out on my site so I know it works.

SHANE-D-PAIN
11-04-2005, 06:02 PM
Just thought I would post that I currently have the following setting in the profile field:

Description: Choose yes to have little Christmas Snowflakes Floating around throughout December.

I just did this because I have added the prifle field but not added the code for the Snow Flakes yet cause I feel its too early.

Members will be able to see the Field but the Description clearly states that the Flakes will be there in December, just lets them choose now if they want to.

smsmasters
11-04-2005, 06:34 PM
It's great, the only thing I don't like about javascript with this code is that it uses up a lot of cpu resources and slows everything down. :(

lordnex
11-04-2005, 06:41 PM
This works well in IE, Firefox and netscape (I've viewed it in netscape and IE, my users firefox). It *does* lag the site for users on slower computers so everyone needs to take that into consideration. I've got a pretty kicking computer and it only minorly lagged when I tried to open a pop down menu on my nav bar but some people it does get pretty laggy (one of my friends showed me at his house). I'm using the "small" flakes and not the big ones.

Some kind of randomizer would be cool, or a way to set it up as an even so that at random times during the day it snows.

It's an AWESOME little toy though.

SHANE-D-PAIN
11-04-2005, 09:35 PM
It's great, the only thing I don't like about javascript with this code is that it uses up a lot of cpu resources and slows everything down. :(

Well if you do what I have posted up then its set to No so the Snow Flakes wont show, you could put a warning in the description I suppose to let them know it will lag on computers that suck.

Detomah
11-04-2005, 11:48 PM
I can't wait til next halloween, I got a kick butt flying witch gif I'm going to use LOL!

Hehe, yeah, you've just given me inspiration... I could actually use this for all kinds of events and a variety of festive type things. :D

Although obviously I won't be over doing it, as it would get annoying if it was over used.

SHANE-D-PAIN
11-05-2005, 10:09 PM
Hehe, yeah, you've just given me inspiration... I could actually use this for all kinds of events and a variety of festive type things. :D

Although obviously I won't be over doing it, as it would get annoying if it was over used.

Thats why you give users the option to turn it off and on. :P

davidw
11-05-2005, 11:29 PM
What would be awesome? A seasonal package. Depending on the season, or weather conditions, the option given (and applicable images/files) to turn on/off weather (rain, snow) seasonal attributes (leaves, ghosts-if you will), etc. If you're feeling kinda weathered down, have something like the sun poke out from behind the forums and move depending on the time of day... lol - the options would be endless - and a vote for HotM.

EasyTarget
11-06-2005, 04:32 AM
What would be awesome? A seasonal package. Depending on the season, or weather conditions, the option given (and applicable images/files) to turn on/off weather (rain, snow) seasonal attributes (leaves, ghosts-if you will), etc. If you're feeling kinda weathered down, have something like the sun poke out from behind the forums and move depending on the time of day... lol - the options would be endless - and a vote for HotM.
ditto
and add in a holiday pack. (st. patricks, valentine, halloween, etc)

dmva83
11-06-2005, 04:55 AM
Very nice, going to check this out come December...I've just started making different logos for my main theme depending on the holiday (did halloween and have one set aside for thanksgiving already...), definitely have to do something with this...

ggiersdorf
11-07-2005, 04:56 PM
Cant we just get a turn it on/off in the Admin-CP for all users?

ashley53680
11-07-2005, 05:51 PM
Anyone have this running and want to share the link? I know what snow effects are like, but I just wanna see how purdy it is. :)

Arios
11-09-2005, 04:19 AM
Cool stuff. Not sure if this can be fixed but the little cursor goes crazy flashing while this is running instead of the normal blink.

I got red X's for IE as well, but the light snow is good to go. Anyhow very nice for the holidays :)

*clicks install*

G0F0RBR0KE
11-11-2005, 01:46 AM
Don't use the big snow, it doesn't work perfect on IE nor FF. It takes while to load.

INSTALL

addict
11-13-2005, 11:44 PM
For those of you that want to use this for different holidays, etc... you can also put in date conditionals, so that the script also checks to see if it's the correct date for them to show.

I don't know the exact php code, but it would look something like:
if date == <the date> && $userinfo[fieldX] !='No' <rest of the code>

That way you could actually put all of the stuff in before the holidays rolled around (in separate <if> blocks), and it would be the code that would handle turning it on and off, rather than you having to manually do it.

This also allows for users to turn off these extra goodies if they want, so that they can 'opt out' for slower computers (or if they just find it annoying).

Flow Fusion
11-23-2005, 04:22 AM
Great hack...thanks!

craiovaforum
11-23-2005, 04:30 PM
hmm.. it is indeed a very nice visual effect.
but look at the cpu load that your browser consumes when viewing a site using this hack. even when u use the small snowflakes version.
is there any way to minimize that?

Bounce
11-23-2005, 07:44 PM
Pretty neat :squareeyed:

can the small flakes not be made a bit bigger for us FF users..

Opera hates it lol

lanc3lot
11-23-2005, 08:23 PM
Its very nice but its a shame that hasnt an option to turn it off or on through the Admin cp....

Hope it can be added so i can install it :)

Flow Fusion
11-23-2005, 09:02 PM
hmm.. it is indeed a very nice visual effect.
but look at the cpu load that your browser consumes when viewing a site using this hack. even when u use the small snowflakes version.
is there any way to minimize that?


Yeah I had to turn it off. It was freazing up a few members browsers.

craiovaforum
11-23-2005, 09:11 PM
me too

hollyboy
11-26-2005, 11:05 AM
it freazed up the gif avatars (animated)

phonexpo
11-27-2005, 11:46 AM
I'm using the big & Small snowflakes code, is there anyway to speed up the big flakes?

I made the big snowflake half the size too if anyone wants to use it. It looks a little better.


http://phonexpo.net/images/misc/snow.gif

funinthesun
11-27-2005, 12:30 PM
I had to turn it off as it was really slowing down my forum :(

phonexpo
11-27-2005, 12:33 PM
I had to turn it off as it was really slowing down my forum :(

Yeah I've just turned it off too. Pitty I liked it :(

Delphiprogrammi
11-27-2005, 07:08 PM
that works fine the only issue i have with it is that i'm a vbportal customer and i'd like to see that snow on my portal to i'll ask over at there forums through :)

Solitary Seraph
11-28-2005, 01:46 AM
You can edit the snow.js with any type of editor.

var num = 20; //Number of flakes
var timer = 75; //setTimeout speed. Varies on different comps
var enableinNS6 = 1 //Enable script in NS6/Mozilla? Snow animation could be slow in those browsers. (1=yes, 0=no).

The first two will let you change it, i changed it to 20/75, and it dropped to about 50% cpu usage for my members with bad computers. Keep tweaking with it and eventually it should work nicely for everyone, or you can turn it off with the last bit, for the mozilla users.

VaaKo
11-30-2005, 07:26 AM
how can I make the big snow flakes faster?

funinthesun
11-30-2005, 11:41 AM
I really want this for my forum but it uses so much cpu. Is there anyway of adding it without it slowing down the forum so much? :(

EasyTarget
11-30-2005, 02:53 PM
read 2 posts above yours. :D

concepts
11-30-2005, 10:52 PM
this looks great!!!!

www.UrbanAU.com/board amazing at the smallest touches it adds!

Enthonia Tech
12-01-2005, 05:22 AM
yes , the snow started in my forum :D

nMIK-3
12-02-2005, 09:36 PM
Great job!
Is there anyway that we can make the big snow to work with firefox?

fabianv
12-03-2005, 08:53 AM
No snow on 3.5.1 :(


Help me!

funinthesun
12-03-2005, 09:01 AM
Pleeeeaaasssseeee can someone somehow make this less cpu intensive before the xmas season is over :D

fabianv
12-03-2005, 09:58 AM
Ok I got it working but damn

Most of my users are Opera and firefox users :(

They report that it eats ALL their cpu??!?!

Can someone please please fix this problem.. I love the snow to bits!!! :ermm:

EasyTarget
12-04-2005, 02:39 AM
read post #46

lanc3lot
12-05-2005, 01:19 AM
Anyone came up with a fix for ff users?

DJ XtAzY
12-05-2005, 02:09 AM
this hack wont work well with VBGoogle map installed =[

phonexpo
12-05-2005, 10:21 PM
this hack wont work well with VBGoogle map installed =[

https://vborg.vbsupport.ru/showthread.php?t=101947 Merry Christmas ;)

Thug
12-06-2005, 11:59 AM
<a href="http://www.oh-twadi.com/forum" target="_blank">www.oh-twadi.com/forum</a>
i added small snow now,i was wondering how i can make them twice size of there current size,so ppl can see more

Danny Diamond
12-06-2005, 01:54 PM
this worked great !!

Thank you very much

Snort_2005
12-06-2005, 01:58 PM
Installed and working on vBulletin 3.5.1. :) Good job.

Preview: http://www.zcworld.net/ (I also got it working on vBadvanced) o_o

dieselpowered
12-06-2005, 02:08 PM
Installed and working on vBulletin 3.5.1. :) Good job.

Preview: http://www.zcworld.net/ (I also got it working on vBadvanced) o_o

Working fine on 3.5.1 here as well as cb CMPS :)

loonytune15
12-08-2005, 02:17 PM
hmm pity i cant run it wth my gif banner, looks good though

*edit* my bad, someone has been playing with my firewall settings.

Works great and installs.

swepics
12-09-2005, 09:35 PM
I love it, just added it for the holidays. :]

midnightwalker
12-15-2005, 07:28 AM
You can make the big snow working in firefox by modify this script

find
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i];
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);

replace with this
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i]+'px';
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+'px';

GuaRRand
12-15-2005, 08:16 AM
Small and big dont work with FF 1.5

portalimiz
12-16-2005, 09:03 AM
thanx ;) installed

Team sockopen
12-16-2005, 07:35 PM
I was wondering. Could this be edited so that there was a on/off switch, and a large/small/both snowflakes one too in admin cp?

davidw
12-17-2005, 01:57 AM
Ok, here's a 30 second random thought for those wanting users to control the option. Don't shoot me if it doesn't work, because I've not tested it.
Go into your admincp and create a new user profile field. 2 choices yes no.
Put in the header an if statement - like <if condition $userinfo[field99] == 1 (or yes or whatever) or whatever the syntax is (can't think at the moment). then the script - that way if it meets the criteria then voila! :D
Ok, off to bed :P

Smiry Kin's
12-17-2005, 03:01 AM
Attached is a nicer snow effect. ( imo )

:)

Fibe
12-18-2005, 01:56 AM
Used to work for me. Somehow it no longer does :(
Using vb 3.5.2 and firefox 1.5

I edited header template and added the code for SMALL snow at the top and uploaded the files: nothing happens

Revpolar
12-18-2005, 10:11 PM
Santa and reindeer.
Just rename it snow.gif
Id only run this one on Christmas eve.

dano
12-20-2005, 08:58 PM
You can edit the snow.js with any type of editor.

var num = 20; //Number of flakes
var timer = 75; //setTimeout speed. Varies on different comps
var enableinNS6 = 1 //Enable script in NS6/Mozilla? Snow animation could be slow in those browsers. (1=yes, 0=no).

The first two will let you change it, i changed it to 20/75, and it dropped to about 50% cpu usage for my members with bad computers. Keep tweaking with it and eventually it should work nicely for everyone, or you can turn it off with the last bit, for the mozilla users.

Thanks for this. I just tweaked mine like this and will report back as to the users experience. Thanks again.

Snake
12-25-2005, 11:10 AM
It's not working on my forums. :S

Revpolar
12-31-2005, 08:03 PM
Heres one for new years eve.

kregger
01-08-2006, 09:41 AM
Cool snow! Thanks dude. *clicks install*

Craig

evenmonkeys
01-10-2006, 08:36 PM
Is there a way to make a Valentine's Day theme as well?

angelicGrace
01-16-2006, 03:09 PM
I substitued a heart gif (that i named snow.gif cause i'm lazy) for the traditional snow gif. used the big snowflake code. then used the fix from a page back that allows it to show on both IE and Foxfire.

Can be seen here (http://www.now-n-then.net/forum/?styleid=60)

blackpheonix
02-09-2006, 06:06 PM
great to see ppl are changing the images to match the occasions. :)
i should really change the title ;)

Smiry Kin's
02-09-2006, 09:07 PM
just update thread with new image... n send out emails to every one.. it will be great..

blackpheonix
06-01-2006, 09:37 PM
Updated :)

CSS59
06-01-2006, 10:14 PM
cool, an update in June LOL

blackpheonix
06-02-2006, 01:28 PM
cool, an update in June LOL

hehe yeah been rather busy lately and its not just for snow no more so it can be used all year round :)

Alfa1
08-07-2006, 01:50 PM
Does this work for 3.6 Gold?

blackpheonix
08-07-2006, 02:12 PM
Does this work for 3.6 Gold?

havent dloaded and installed 3.6 as yet so not sure sorry :(

Roan
10-03-2006, 10:02 PM
Installed and working fine on both of my vB 3.6.1 forums and viewable in IE and FF. I'm using the halloween witch for the time being. Going to make my own graphics for this.

I'd like to restrict the falling effects to just the forumdisplay pages or on my vBAdvanced front end pages, however, as I think it's too annoying to have when you are posting a message or viewing a thread list. Would also save on CPU as well.

Anyone know how to do that?

Roan

Running on both of these sites:

http://bowheads.org/forums/cmps_index.php
http://aquafacts.net

SparKeh
11-13-2006, 04:52 PM
its good but effect2 is only showing to the end of the first post really, is there no way it can show the whole way to the bottom of the page?

alawee.blawee
12-06-2006, 10:02 AM
thanks

fishhub
12-13-2006, 04:22 PM
waiting for the AdminCp disable function

However, great mod!:)

valdeztke
12-15-2006, 03:59 AM
Wow this is an old thread...lol I think its the right ocassion to revisit though; at least the right time of year :)


I'd like to add some snow to my site for the holiday season, but I am a total and I mean total NEWBIE to mods/hacks. I have a decent site started so far www.americaoutloud.org.

I just wanted to know if someone could walk me through the process on IM one evening.

ALSO:

1. Has anyone been able to have this mod only work on the "homepage"?

2. Can it be controlled through the admin function

Please shoot me an email if you can help out!
juan.barnett at gmail.com

www.americaoutloud.org

Thanks!

Renmiri
12-24-2006, 03:14 PM
This is great to give some X-mas cheer :D

http://forums.ffproject.net/index.php

fishhub
12-25-2006, 04:48 PM
any effect pics for hari raya haji?& for chinese new year?

Renmiri
12-27-2006, 04:57 PM
any effect pics for hari raya haji?& for chinese new year?
You can add gif files in the "effects" folder and use the "big snowflakes" javascript to point to any picture you want.

fishhub
12-29-2006, 06:12 PM
You can add gif files in the "effects" folder and use the "big snowflakes" javascript to point to any picture you want.

noted. but there is'nt any gif files on other effects for hari raya and lunar new year.

anyone has gold ingots gif pictures to share?:D

blackpheonix
12-30-2006, 04:08 PM
ill look into the admincp function as it seems a popular request erm the only thing i could find via google for gold ingots is attached

ruger
11-28-2007, 05:53 AM
Worked for me adding it to my vbportal front page.

thompson
11-28-2007, 07:54 AM
very nice mod, thanks

Eq4bits
03-31-2008, 02:02 PM
is there some reason this doesn't work for IE browser? works great in mozilla, firefox and seamonkey...

Eq4bits
03-31-2008, 02:19 PM
in addition, after further investigation:
when the page loads that has this effect added to it's template
in IE7
there's a notice at the bottom in bar that it is 'Done' but with errors on page
details of error:
Line 356
Char 5
Error Object required
Code 0
then when looking at page source via code editor :
lines 355-358:
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
line 356 being the doc_width code

Il Pompa
09-19-2008, 09:53 AM
It work with the last versione of vbulletin and vbadvanced??

appsfinder
11-02-2008, 08:06 PM
For those of you that want to use this for different holidays, etc... you can also put in date conditionals, so that the script also checks to see if it's the correct date for them to show.

I don't know the exact php code, but it would look something like:
if date == <the date> && $userinfo[fieldX] !='No' <rest of the code>

That way you could actually put all of the stuff in before the holidays rolled around (in separate <if> blocks), and it would be the code that would handle turning it on and off, rather than you having to manually do it.

This also allows for users to turn off these extra goodies if they want, so that they can 'opt out' for slower computers (or if they just find it annoying).

how do i put the date in? 25/12/2008 or some other format need your help.

appsfinder
12-12-2008, 10:21 AM
how can i get this to work with forum page only