Niels snow mod?

Here everyone can post

Moderator: Moderators

Forum rules
The content in this forum is dated Dec. 21 2005 and can be used as Archive only. This Forum is LOCKED and READ ONLY !

Niels snow mod?

Postby ChristianR on Mon 05. Dec, 2005 12:18

Hi Niels,

Back in december 2003 who had snow on the forum, I cant find the post on here (tried searching), but you gave us your script.

I still have the file, but I cant remember how to load it up. Could you let me know?

snow.js

Code: Select all
<!-- Snow Script by kurt.grigg@virgin.net, slightly modifyed by Niels Chr. Rød (dec 2003)
Y = new Array();
X = new Array();
S = new Array();
A = new Array();
B = new Array();
M = new Array();
V = (document.layers)?1:0;

iH=(V)?window.innerHeight:window.document.body.clientHeight;
iW=(V)?window.innerWidth:window.document.body.clientWidth;
N = Math.round(iH*iW/25000)+1; //Number of snow balls, initially 40

for (i=0; i < N; i++){                                                               
Y[i]=Math.round(Math.random()*iH);
X[i]=Math.round(Math.random()*iW);
S[i]=Math.round(Math.random()*4+1);   //Speed of snow, initially as 5+2
A[i]=0;
B[i]=Math.random()*0.1+0.1;
M[i]=Math.round(Math.random()*2+1); //Size of snow ball, initially at 1+1
}
if (V){
for (i = 0; i < N; i++)
{document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0 BGCOLOR='#FAFAF0' CLIP='0,0,"+M[i]+","+M[i]+"'></LAYER>")}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px">');
document.write('<div style="position:relative">');
for (i = 0; i < N; i++)
{document.write('<div id="si" style="position:absolute;top:0;left:0;width:'+M[i]+';height:'+M[i]+';background:#FAFAF0;font-size:'+M[i]+'"></div>')}
document.write('</div></div>');
}

function snow(){
var H=(V)?window.innerHeight:window.document.body.clientHeight;
var W=(V)?window.innerWidth:window.document.body.clientWidth;
var T=(V)?window.pageYOffset:document.body.scrollTop;
var L=(V)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < N; i++){
sy=S[i]*Math.sin(Math.PI/2); // 90*Math.PI/180)
sx=S[i]*Math.cos(A[i])+0.2;
Y[i]+=sy;
X[i]+=sx;
if (Y[i] > H){
Y[i]=-10;
X[i]=Math.round(Math.random()*W);
M[i]=Math.round(Math.random()*2+1);
S[i]=Math.round(Math.random()*4+1);
}
if (V){document.layers['sn'+i].left=X[i];document.layers['sn'+i].top=Y[i]+T}
else{si[i].style.pixelLeft=X[i];si[i].style.pixelTop=Y[i]+T}
A[i]+=B[i];
}
setTimeout('snow()',N+10); //timeout initially 10
}



Regards,

ChristianR
ChristianR
Poster
Poster
 
Posts: 47
Joined: Sun 18. Jan, 2004 14:17

Postby Niels on Tue 06. Dec, 2005 22:20

You will need to modify your oveall_header.tpl file slighly (e.g. inside /templates/subSilver)

the file mentioned above you will need to store somewhere and call it e.g. snow.js
you could place this in /templates/subSilver/

Then in your overall_header.tpl find the HTML tag <body> (start of the body)
In the end of the HTML tag insert
Code: Select all
onload="snow();"

mine looks like this now

Code: Select all
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}" onload="snow();">

then add this after the body tag (next line)
Code: Select all
<script language="java**script" type="text/java**script" src="/templates/subSilver/snow.js" /></script>

notise the path to the snow.js file.


all is done
(if a how-to is EM ready, it will mostly be bullet prof, since a machine is more picky than a human. :D)
User avatar
Niels
Poster
Poster
 
Posts: 4390
Joined: Sat 27. Jul, 2002 15:46


Return to Test forum

Who is online

Users browsing this forum: No registered users and 1 guest

cron