Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-15-2009, 09:21 AM
Smo0k3 Smo0k3 is offline
Junior Member
 
Join Date: Sep 2009
Posts: 3
Default nice countdown counter in HostICan hosting community registration

I use the forum and hosting services of the HostICan company. During registration process a noticed a nice countdown counter. I need a such code for the countdown timer. Thanks in advance.
Reply With Quote
  #2  
Old 09-15-2009, 10:42 AM
hood's Avatar
hood hood is offline
Member
 
Join Date: Jan 2009
Posts: 99
Default Re: nice countdown counter in HostICan hosting community registration

I do not know what model script used HostICan, but here is a useful example:
HTML Code:
<script type="text/javascript">
var minute = 60;
var hour = minute * 60;
var obj = null;
function toFixFormat(sender)
{
return (sender < 10) ? '0' + sender : sender;
}
function calculateTime(phpTime)
{
var curTime = phpTime;
var hours = Math.floor(curTime / hour);
if (hours < 0)
{
obj.innerHTML = '<a href=>Timeout</a>';
return;
}
curTime -= hours * hour;
var minutes = Math.floor(curTime / minute);
curTime -= minutes * minute;
var seconds = Math.floor(curTime);
obj.innerHTML =
toFixFormat(hours)
+ ':' + toFixFormat(minutes)
+ ':' + toFixFormat(seconds);
setTimeout('calculateTime("'+(phpTime - 1)+'")', 1000);
}
window.onload = function()
{
obj = document.getElementById('counter');
calculateTime(1234);
}
</script>
<div id="counter"></div>
The type of clock is made from these lines:
var minute = 60;
var hour = minute * 60;

calculateTime(1234); - Here is how to set up the countdown time in seconds. The time will be automatically calculated and showed in seconds, minutes i.e.
Reply With Quote
Reply

Tags
community, countdown, counter, hostican, hosting, nice, registration

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 01:23 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.