The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Code for falling snow problem

2 posters

Go down

Code for falling snow problem Empty Code for falling snow problem

Post by Walshy95 December 15th 2008, 11:22 pm

Hey, I got a code which I think is from here where you put a code in the forum description and snow is meant to fall. Well I could only get the little snow to fall, and not the snow flakes. One of the Admins of my forum got the code and he said it's from here and he said he couldn't get the big snow to fall so can anyone help me with this please? Like tell me the correct code and tell me in steps where to go and put it for it to work? Thanks. Smile
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 5:44 pm

Bump.
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 6:12 pm

Ok, i just figured it out, go to the display in your AP, and go to homepage, generality, and homepage message and cpy and past this

<script type="text/javascript">

Code:
/******************************************
* Snow Effect script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
* Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
* Last updated Nov 9th, 05' by DD. This notice must stay intact for use
******************************************/
 
var snowsrc="http://i71.servimg.com/u/f71/12/41/10/67/snow10.gif"
var no = 10;
var hidesnowtime = 0;
var snowdistance = "windowheight";

var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;

function iecompattest()
{
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;
 
if (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[i] = 0;
  xp[i] = Math.random()*(doc_width-50);
  yp[i] = Math.random()*doc_height;
  am[i] = Math.random()*20;
  stx[i] = 0.02 + Math.random()/10;
  sty[i] = 0.7 + Math.random();
  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 snowIE_NS6()
{
  doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
  doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
  for (i = 0; i < no; ++ i)
  {
      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();
      }
      dx[i] += stx[i];
      document.getElementById("dot"+i).style.top=yp[i]+"px";
      document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
  }
  snowtimer=setTimeout("snowIE_NS6()", 10);
}

function hidesnow()
{
  if (window.snowtimer) clearTimeout(snowtimer)
      for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
}
     

if (ie4up||ns6up)
{
  snowIE_NS6();
  if (hidesnowtime>0)
      setTimeout("hidesnow()", hidesnowtime*1000)
}

</script>
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 6:25 pm

But everytime I do that the code appears under my home page message.
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 6:37 pm

Make sure you have the /script in there...and that you copied everything in the code box


~TJ~
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 6:44 pm

Yeah, I do that and it still doesn't work. Is there any other solutions?
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 6:49 pm

There is some way to inject it through the modules but i dont know how to do it that way. Is your HTML on or off in the homepage message?
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 6:51 pm

It's off. Should I turn it on?
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 6:53 pm

Lol, yes loul
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 7:02 pm

Lol, well that's weird. Even when I still do it it doesn't work. confused
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 7:03 pm

Can you give me the link to your forum?
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 7:09 pm

Okay, click on the planet under my name because I don't wan't to get a warning. Smile And the code won't appear now because I deleted the code so when I have guests they don't say 'Wtf? Is he retarded or what?'. Lol... loul
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 7:12 pm

Lol, do you have a header? you have to have a title with it also, i dont think you have a title, so name it something like....welcome to gamer nad or something like that...and if it still doesn't work im out of ideas lol
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 7:16 pm

Yeah I do, do you mean a title for the homepage message? Yeah I have a header and I used the exact same title you said to use. Lol.
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Ganning4 December 17th 2008, 7:18 pm

Yeah.....then im out of ideas =P
avatar
Ganning4
New Member

Male Posts : 23
Reputation : 0
Language : english

http://www.darkimpulse.first-forum.com

Back to top Go down

Code for falling snow problem Empty Re: Code for falling snow problem

Post by Walshy95 December 17th 2008, 10:44 pm

Oh it's alright, I did it. Smile
Walshy95
Walshy95
Active Poster

Male Posts : 1308
Reputation : 6
Language : English
Location : UK, Liverpool

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum