Results 1 to 3 of 3
-
12th Jun 2011, 08:57 AM #1OPMember
Fake counter
Hello,
I need help with this javascript, i want make fake counter, good example is here https://mail.google.com/
But i need counter from 0 up to 100.000 and reset every 24h. so after 24. again start with 0...milos007 Reviewed by milos007 on . Fake counter Hello, I need help with this javascript, i want make fake counter, good example is here https://mail.google.com/ http://i.imgur.com/7hXXe.png But i need counter from 0 up to 100.000 and reset every 24h. so after 24. again start with 0... Rating: 5
-
12th Jun 2011, 02:19 PM #2Respected Member
Lots of them if you search google. Here is a simple one you can use to create your own. If you want it to count up use + instead of minus on the number.
Code:<HTML> <HEAD><TITLE>detect and redirect</TITLE> <script LANGUAGE="Javascript"> var start=new Date(); start=Date.parse(start)/1000; var counts=10; function countdown(){ var now=new Date(); now=Date.parse(now)/1000; var x=parseInt(counts-(now-start),10); if(document.form1){document.form1.clock.value = x;} if(x>0){ timerID=setTimeout("countdown()", 100) }else{ switch(screen.width) { case 800: goToPage('medres.php'); break; case 1024: goToPage('hires.php'); break; } function goToPage(url) { document.location.replace(url); alert('your screen setting is '+screen.width+'x'+screen.height+', redirecting for optimal viewing'); } } } </script> <script LANGUAGE="Javascript"> window.setTimeout('countdown()',100); </script> </HEAD> <BODY BGCOLOR="black" > <FORM NAME="form1"> In <INPUT TYPE="text" NAME="clock" SIZE="2" VALUE="10"> seconds the page will auto detect your screen resolution for optimal viewing. If you are NOT redirected, you can view our site by clicking <A href="medres.htm">HERE</A><P> </FORM> </BODY> </HTML>
-
12th Jun 2011, 10:04 PM #3
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Counter Strike 1.6 Vs Counter Strike Source
By -zAAz- in forum Polling PlazaReplies: 25Last Post: 2nd Jul 2011, 12:16 PM -
Fake-Status.com -Facebook Fake Statuses
By EldenTotraku in forum Site ReviewsReplies: 26Last Post: 14th Jun 2011, 06:35 PM -
Fake Mailer - Send Fake Emails And Prank Your Friends Anonymously :D
By vics.devil in forum Site ReviewsReplies: 34Last Post: 6th Feb 2011, 08:48 PM -
Counter Strike
By Hx in forum General DiscussionReplies: 8Last Post: 26th Feb 2010, 05:54 PM -
The laziness counter
By Gat Dat in forum Polling PlazaReplies: 10Last Post: 6th Sep 2009, 08:19 PM
themaPoster - post to forums and...
Version 5.35 released. Open older version (or...