<html>
<head>
</head>
<body>
<img name="HRS_first" id="HRS_first" width="50" height="50">
<img name="HRS_second" id="HRS_second" width="50" height="50">
<img src="...jpg" width="50" height="50">
<img name="MNS_first" id="MNS_first" width="50" height="50">
<img name="MNS_second" id="MNS_second" width="50" height="50">
<img src="...jpg" width="50" height="50">
<img name="SCS_first" id="SCS_first" width="50" height="50">
<img name="SCS_second" id="SCS_second" width="50" height="50">
<img src="...jpg" width="50" height="50">
<img name="MLS_first" id="MLS_first" width="50" height="50">
<img name="MLS_second" id="MLS_second" width="50" height="50">
<img name="MLS_third" id="MLS_third" width="50" height="50">
<script language="javascript">
Now=new Date();
setInterval("Now= new Date();",0);
var HRS= new String(Now.getHours());
var MNS= new String(Now.getMinutes());
var SCS= new String(Now.getSeconds());
var MLS= new String(Now.getMilliseconds());
document.HRS_first.src=HRS.charAt(0)+".jpg";
document.HRS_second.src=HRS.charAt(1)+".jpg";
document.MNS_first.src=MNS.charAt(0)+".jpg";
document.MNS_second.src=MNS.charAt(1)+".jpg";
document.SCS_first.src=SCS.charAt(0)+".jpg";
document.SCS_second.src=SCS.charAt(1)+".jpg";
document.MLS_first.src=MLS.charAt(0)+".jpg";
document.MLS_second.src=MLS.charAt(1)+".jpg";
document.MLS_third.src=MLS.charAt(2)+".jpg";
setInterval("document.HRS_first.src=HRS.charAt(0)+'.jpg'",3600000);
setInterval("document.HRS_second.src=HRS.charAt(1)+'.jpg'",3600000);
setInterval("document.MNS_first.src=MNS.charAt(0)+'.jpg'",60000);
setInterval("document.MNS_second.src=HRS.charAt(1)+'.jpg'",6000);
setInterval("document.SCS_first.src=SCS.charAt(0)+'.jpg'",10000);
setInterval("document.SCS_second.src=SCS.charAt(1)+'.jpg'",1000);
setInterval("document.MLS_first.src=MLS.charAt(0)+'.jpg'",100);
setInterval("document.MLS_second.src=MLS.charAt(1)+'.jpg'",10);
setInterval("document.MLS_third.src=MLS.charAt(2)+'.jpg'",1);
</script>
</body>
</html> |