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.

I need snow effect for forum but i need script where i can put my jpg. snow flakes.

5 posters

Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:02 pm

I need snow effect for forum but i need script where i can put my jpg. of snow flakes. Any help?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by Mike December 12th 2011, 10:05 pm

Code:
<script type="text/javascript">

/******************************************
* 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
******************************************/
 
  //Configure below to change URL path to the snow image
  var snowsrc="YOURIMAGE"
  // Configure below to change number of snow to render
  var no = 10;
  // Configure whether snow should disappear after x seconds (0=never):
  var hidesnowtime = 0;
  // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  var snowdistance = "pageheight";

///////////Stop Config//////////////////////////////////

  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;    // coordinate and position variables
  var am, stx, sty;  // amplitude and step variables
  var i, doc_width = 800, doc_height = 600;
 
  if (ns6up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = iecompattest().clientWidth;
    doc_height = iecompattest().clientHeight;
  }

  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  for (i = 0; i < no; ++ i) { 
    dx[i] = 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 (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() {  // IE and NS6 main animation function
    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) {  // 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();
      }
      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>

Change
Code:
 //Configure below to change URL path to the snow image
  var snowsrc="YOURIMAGE"

to your image.

Also, this was taken from http://www.dynamicdrive.com/dynamicindex3/snow.htm
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:07 pm

Great and fast as Drogba921!!! Hat-trick for you!! TNX! cheers
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:07 pm

Where to put script?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by Guest December 12th 2011, 10:10 pm

You can put script in Announcements: ACP => General => Messages and e-mails => Announcements. Don't forget to activate announcements before. Wink
avatar
Guest
Guest


Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by Mike December 12th 2011, 10:11 pm

ACP -> Modules -> Javascript Management -> Create new -> Activate in All Pages.
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by Guest December 12th 2011, 10:16 pm

If you'll put the script in javascript management take sure that the script should be without <script type="text/javascript"> and </script> Wink
avatar
Guest
Guest


Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:19 pm

Cant work Sad
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:20 pm

I delete this,

<script type="text/javascript"> and </script>

but still dont work.
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by SLGray December 12th 2011, 10:25 pm

Did you change this:

var snowsrc="YOURIMAGE"

YOURIMAGE is the link to your snowflakes.


I need snow effect for forum but i need script where i can put my jpg. snow flakes. Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:27 pm

avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:29 pm

Here is my whole script i done all here and want work.

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
******************************************/
 
  //Configure below to change URL path to the snow image
  var snowsrc="http://i232.photobucket.com/albums/ee188/CharlieFromStadium/BalkanRHCPForum.gif"
  // Configure below to change number of snow to render
  var no = 10;
  // Configure whether snow should disappear after x seconds (0=never):
  var hidesnowtime = 0;
  // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  var snowdistance = "pageheight";
 
///////////Stop Config//////////////////////////////////
 
  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;    // coordinate and position variables
  var am, stx, sty;  // amplitude and step variables
  var i, doc_width = 800, doc_height = 600;
 
  if (ns6up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } else if (ie4up) {
    doc_width = iecompattest().clientWidth;
    doc_height = iecompattest().clientHeight;
  }
 
  dx = new Array();
  xp = new Array();
  yp = new Array();
  am = new Array();
  stx = new Array();
  sty = new Array();
  snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  for (i = 0; i < no; ++ i) { 
    dx[i] = 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 (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() {  // IE and NS6 main animation function
    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) {  // 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();
      }
      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)
      }
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:43 pm

Any help?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 10:55 pm

ACP -> Modules -> Javascript Management -> Create new -> Activate in All Pages

I done all like this i put link of snow flakes and nothing hepen? Sad
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by runawayhorses December 12th 2011, 11:13 pm

Go to this site and download the snowflake script, its free:

http://www.schillmania.com/projects/snowstorm/

Unzip the file and upload the js file to a server that allows remote linking and JavaScript files.

Here's a free Web Hosting service that allows everything I mentioned above:

http://www.webs.com/

Upload the file there and copy the URL of the file.

To add the code/File go to Admin Panel>>Messages and e-mails>>Search Engines>>Additional Tags>>

Then click the green button to create a new tag and copy this code into it adding your own JavaScript URL that you uploaded:

<script src="ADD YOUR URL HERE"></script>

However, you may only need to add just the URL of the JavaScript to the "Additional Tags" because the forum will add the tags for you. I use phpBB 3 and that's how it works for that version of forums. You don't need to add the <script </script> tags the forum does it for you if you use phpBB 3.. Just add the URL for phpBB 3.

For other forum versions you may need to add the script tags like I showed above.

avatar
runawayhorses
Hyperactive

Male Posts : 2537
Reputation : 166
Language : English
Location : United States

http://runawayhorses.alldiscussion.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:25 pm

Tnx a lot, but this is to complicated can i somehow make it trough the

ACP -> Modules -> Javascript Management -> Create new -> Activate in All Pages
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:32 pm

i cant understand English so good can you adit that for me?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:36 pm

Simple nothing. Sad
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:37 pm

And when i doing preview i got this strange look


http://www.balkan-bssm-rhcp-forum.com/10356.js
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by runawayhorses December 12th 2011, 11:45 pm

Edited


Last edited by runawayhorses on December 12th 2011, 11:59 pm; edited 1 time in total (Reason for editing : took out code)
avatar
runawayhorses
Hyperactive

Male Posts : 2537
Reputation : 166
Language : English
Location : United States

http://runawayhorses.alldiscussion.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:50 pm

Yes that is easy, but i need to do it with my snow flakes.

I need snow effect for forum but i need script where i can put my jpg. snow flakes.


This is my snow: https://2img.net/h/i232.photobucket.com/albums/ee188/CharlieFromStadium/BalkanRHCPForum.gif
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by runawayhorses December 12th 2011, 11:57 pm

That won't work with this snowflake script because it doesn't use Images to create the snow effect. There are no images involved with that script.

That's all I can do to help. I downloaded my own script like I mentioned in my first post in this topic. And use phpBB 3. I don't know what version you have.

I'm done here.
avatar
runawayhorses
Hyperactive

Male Posts : 2537
Reputation : 166
Language : English
Location : United States

http://runawayhorses.alldiscussion.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 12th 2011, 11:59 pm

So i m on start of this topic stuck with this:

I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Can someone help me?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by CharlieFSA December 13th 2011, 8:56 am

Any help?
avatar
CharlieFSA
Forumember

Male Posts : 185
Reputation : 0
Language : Serbian

http://balkanbloodsugarsexm.coolbb.net/

Back to top Go down

I need snow effect for forum but i need script where i can put my jpg. snow flakes. Empty Re: I need snow effect for forum but i need script where i can put my jpg. snow flakes.

Post by Sanket December 13th 2011, 11:23 am

Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Back to top

- Similar topics

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