Home  >  Article  >  Web Front-end  >  js implements simple stopwatch clock effect_javascript skills

js implements simple stopwatch clock effect_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:46:371836browse

This article introduces the example of javascript to implement a simple stopwatch clock effect. Share it with everyone for your reference. The details are as follows:

The operation effect diagram is as follows:

Implementation code:

<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date()
var h=today.getHours()
var m=today.getMinutes()
var s=today.getSeconds()
// add a zero in front of numbers<10
m=checkTime(m)
s=checkTime(s)
document.getElementById('txt').innerHTML=h+":"+m+":"+s
t=setTimeout('startTime()',500)
}

function checkTime(i)
{
if (i<10) 
 {i="0" + i}
 return i
}
</script>
</head>

<body onload="startTime()">
<div id="txt"></div>
</body>
</html>

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn