Saved Bookmarks
| 1. |
Solve : How Can I make a counter that counts up in real time? |
|
Answer» I need to make a counter that counts up (preferably in real time but not CRUCIAL). Ideally, it would count up by 9 dollars per second and go to the hundred millions. Thanks in advance! One that I have SEEN is at www.costofwar.com This is in real time, but that feature is not crucial. Code: [Select]<style type="text/css"> #costOfWarTotal { text-align: center; width: 270px; font-weight: bold; } #costOfWarTotal_Total { font-size: 1.3em; font-weight: bold; color: #990000; } #costOfWarTotal_Link { font-size: .7em; } </style> <script type="text/javascript" src="http://www.costofwar.com/costofwar-embed.js"></script> <div id="costOfWarTotal"> <script language="JavaScript"> initCostOfTotal(); updateCostOfTotal(9); </script> </div> |
|