Lost Soul Posted July 16, 2005 Posted July 16, 2005 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 secondany ideals ?
Lost Soul Posted July 16, 2005 Author Posted July 16, 2005 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 numberany ideals any one,, ?
Stalkie Posted July 24, 2005 Posted July 24, 2005 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 numberany ideals any one,, ?<{POST_SNAPBACK}>Try with some CSS, probarly something like this:var showCountdown=document.getElementById('countdown');showCountdown.innerHTML=countdownValue;showCountdown.style['top'] += 1;
Lost Soul Posted July 28, 2005 Author Posted July 28, 2005 hmm interesting ill see what i can work out thqanks for your ideal
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now