WiredWX Christian Hobby Weather Tools
Would you like to react to this message? Create an account in a few clicks or log in to continue.

WiredWX Christian Hobby Weather ToolsLog in

 


descriptionGP's First Birthday! EmptyGP's First Birthday!

more_horiz
We shall become a year old on Christmas Day this year!

I opened the forum on that day last year.... 2007!

We have come a long way in a year, although there is also a long way to go, so lets all enjoy the ride!

Thankyou to everyone invloved........ every guest who visits, every member who participates, and all the hard working staff who make this all possible!

You know who you are!

A special thanks to my good friend and site co-owner/administrator, Doctor Inferno!



Cheers all! Thank You!

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Wow.
This "family" would never of existed without you Doc/Digital, so thank you for your hard work and sticking at it.

Congratz to Geekpolice also.
[edit]

Just thought I'd note, since we reached 500 members, to now 700 and it's only been 2 months. So we are earning 100 members a month. Awesome growth rate for a small forum. Hooray!

............................................................................................

Site Admin / Security Administrator

Virus Removal ~ OS Support ~ Have we helped you? Help us! ~ GeekChat
- Please PM me if I fail to respond within 24hrs.
GP's First Birthday! DXwU4
GP's First Birthday! VvYDg

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
anything special planned?

............................................................................................

GP's First Birthday! Educat10

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Not very sure about that yet, we should be setting up a new theme for Christmas too.

Thank you to all members and staffs who participated in this forum to make this possible! Right On!

............................................................................................

Please be a GeekPolice fan on Facebook!

GP's First Birthday! Lambo-11

Have we helped you? Help us! | Doctor by day, ninja by night.

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
sounds good...

............................................................................................

GP's First Birthday! Educat10

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Good work to all!

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Let's aim for one thousand members on the first birthday so we have a better reason to celebrate.

............................................................................................

GP's First Birthday! Segmen10

FunSubstance is the place to go for daily entertainment.

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Doctor Inferno wrote:
Not very sure about that yet, we should be setting up a new theme for Christmas too.

Thank you to all members and staffs who participated in this forum to make this possible! Right On!


Oooh. How about putting a santa hat on top of the GP shield icon? and change the look alittle, that would be awesome. Goofy

............................................................................................

Site Admin / Security Administrator

Virus Removal ~ OS Support ~ Have we helped you? Help us! ~ GeekChat
- Please PM me if I fail to respond within 24hrs.
GP's First Birthday! DXwU4
GP's First Birthday! VvYDg

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
I'm planning to add snow to the index page using javascript Cheesy Grin (sparkly

............................................................................................

Please be a GeekPolice fan on Facebook!

GP's First Birthday! Lambo-11

Have we helped you? Help us! | Doctor by day, ninja by night.

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Ah. I had some old script that did. One thing though.
Too many snowflakes causes the script to take longer to load and causes lag.

Code:

<style type="text/css">
<!--
body {
   font-family: Verdana, Arial;
   font-size: 10px;
   color: #000000;
   background-color: #FFFFFF;
   margin-bottom: 0px;
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 0px;
}
a {
   font-size: 10px;
   color: #000000;
}
a:link {
   text-decoration: none;
}
a:visited {
   text-decoration: none;
   color: #000000;
}
a:hover {
   text-decoration: none;
   color: #FFFFFF;
}
a:active {
   text-decoration: none;
   color: #000000;
}
-->
</style>

<center>




<script type="text/javascript">
 
  //Configure below to change URL path to the snow image
  var snowsrc="http://i35.tinypic.com/2j45z40.gif"
  // Configure below to change number of snow to render
  var no = 35;
  // 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("")!=-1)? "http://i35.tinypic.com/2j45z40.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;\"><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>

</center>

............................................................................................

Site Admin / Security Administrator

Virus Removal ~ OS Support ~ Have we helped you? Help us! ~ GeekChat
- Please PM me if I fail to respond within 24hrs.
GP's First Birthday! DXwU4
GP's First Birthday! VvYDg

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
Sounds good.....

............................................................................................

GP's First Birthday! L20flloxphl70hr41o7o
sig made by agent cosmic.

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

more_horiz
happy 1st birthday! looking forward to stay here as long as geekpolice is alive.

............................................................................................

GP's First Birthday! MysigROG365x140withmark

descriptionGP's First Birthday! EmptyRe: GP's First Birthday!

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