Status Bar time display effect number zhong_time and date

Source: Internet
Author: User
JavaScript date effects: a digital clock is displayed in the status bar. Although it is not very useful now, this code helps to study JavaScript's control skills on IE objects. If necessary, refer to it.

<HTML> <HEAD> <TITLE> status bar display time-digital clock </TITLE> <META content = "text/html; charset = gb2312 "http-equiv = Content-Type> <SCRIPT language = JavaScript> var timerID = null; var timerRunning = false; function stopclock () {if (timerRunning) clearTimeout (timerID); timerRunning = false;} function showtime () {var now = new Date (); var hours = now. getHours (); var minutes = now. getMinutes (); var seconds = now. getSeco Nds () var timeValue = "" + (hours> 12 )? Hours-12: hours) timeValue + = (minutes <10 )? ": 0": ":") + minutes timeValue + = (seconds <10 )? ": 0": ":") + seconds timeValue + = (hours> = 12 )? "Pm": "am" window. status = timeValue; document. title = timeValue; timerID = setTimeout ("showtime ()", 1000); timerRunning = true;} function startclock () {stopclock (); showtime ();} window. onload = startclock SCRIPT <style> body {font-family: Tahoma; font-size: 9pt; color: # FFFFFF }</style> </HEAD> <BODY bgColor = #336699 id = all text = #000000 topmargin = "0" leftmargin = "0"> <p style =" width: 65; height: 19; position: absolute; left: 20; bottom: 0 "> Please refer to the status bar: </p> </BODY> </HTML>
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.