Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,208,963 members, 8,004,476 topics. Date: Saturday, 16 November 2024 at 05:09 PM |
Nairaland Forum / Nairaland / General / Education / Simple Digital Clock Application (306 Views)
The Ultimate Riddle Challenge: Can You Beat The Clock / What's The Meaning Of The ''O" In O' Clock / ASUU Finally Speaks @11 O Clock #endasuu Campaign Was Right (2) (3) (4)
(1) (Reply)
Simple Digital Clock Application by ProsperChild: 4:23am On Dec 26, 2019 |
Time display is a significant item in web page appearance. Fortunately, JavaScript has enabled us to encounter this issue. We could use "if statement" of JavaScript to make a simple clock application. Now, open your favorite Text Editor and type the codes below: <html> <head> <style> .time { height: 100px; width: 250px; color: red; background-color: yellow; font-family: arial; font-size: 300%; font-weight: bolder; text-align: center; border: 6px solid red; margin-top: 50px; } p { color: black; font-family: arial; font-size: 150%; font-weight: bolder; text-align: center; } </style> </head> <body> <center> <div class="wrapper"> <form name="Tick"> <input class="time" type="text" name="Clock"> </form> </div> </center> <script> function show () { var Digital=new Date () var hours=Digital.getHours () var minutes=Digital.getMinutes () var seconds=Digital.getSeconds () var dn=" " if (hours>12) { dn=" " hours=hours-12 } if (hours==o) hours=12 if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds document.Tick.Clock.value= hours+":"+minutes+":"+seconds+" "+dn setTimeout ("show ()",1000) } show () </script> <p>Simple Digital Clock Application</p> </body> </html> Save the file above with name digital_clock.html Thus its extension is *.html To see the result we could open directly with browser or upload it firstly to Localhost and then type in the searching box of the browser http:// localhost/digital_clock.html 1 Like
|
(1) (Reply)
Benefits Of Study In Australia / Prof Kabir Bala Emerges ABU Vice-chancellor / ASUU Set For New Strike Following Federal Government’s Failure To Pay January Sa
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 11 |