Jump to content

Recommended Posts

Posted

does anybody know of a way i can create a 60 second count down loop with a function of movement for every 1 second ?

i dont want it to show the count down just move text, or an object 1 space every 1 second

any ideals ?


Posted

ok heres my progress so far, ive created a looping count down timer that counts 60 over and over again

<script language="javascript">

<!--

var countdownValue='60';

var countdownValue2='60';

function countdownScript()

{

var showCountdown=document.getElementById('countdown');

showCountdown.innerHTML=countdownValue;

Timer=setTimeout("countdownScript();", 1000);

countdownValue--;

if(countdownValue<0)

{countdownValue=60}

}

//-->

</script>

</head>

<body>

<span id="countdown" style="position:absolute;top:10;left:20"></span>

<script language="javascript">

<!--

countdownScript();

//-->

</script>

now the trick is to have it move an object every second instead of write a number

any ideals any one,, ?

  • 2 weeks later...
Posted
ok heres my progress so far, ive created a looping count down timer that counts 60 over and over again
<script language="javascript">

<!--

var countdownValue='60';

var countdownValue2='60';

function countdownScript()

{

var showCountdown=document.getElementById('countdown');

showCountdown.innerHTML=countdownValue;

Timer=setTimeout("countdownScript();", 1000);

countdownValue--;

if(countdownValue<0)

{countdownValue=60}

}

//-->

</script>

</head>

<body>

<span id="countdown" style="position:absolute;top:10;left:20"></span>

<script language="javascript">

<!--

countdownScript();

//-->

</script>

now the trick is to have it move an object every second instead of write a number

any ideals any one,, ?

Try with some CSS, probarly something like this:

var showCountdown=document.getElementById('countdown');
showCountdown.innerHTML=countdownValue;
showCountdown.style['top'] += 1;

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...