Анимировал часы, а в статусной строке стало отображатся кол-во часов. Как от этого избавится?
Вот полный CODE:
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script language="JavaScript">
var now
var second
var minute
var hour
var degreeSecond
var degreeMinute
var degreeHour
var timer
var stepDegree=6
var stepDegreeHour=30
function checkTime() {
if (document.all) {
now=new Date()
second=now.getSeconds()
minute=now.getMinutes()
hour=now.getHours()
if (hour>=12) {hour=hour-12}
spinIt()
timer=setTimeout("checkTime()",200)
}
}
function spinIt() {
window.status=hour
secondObj.SetIdentity()
minuteObj.SetIdentity()
hourObj.SetIdentity()
degreeSecond=180+stepDegree*second
degreeMinute=180+stepDegree*minute
degreeHour=180+stepDegreeHour*hour+(Math.floor(stepDegree*minute/12))
secondObj.Rotate(0,0,degreeSecond)
minuteObj.Rotate(0,0,degreeMinute)
hourObj.Rotate(0,0,degreeHour)
}
</script>
</head>
<body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0" onLoad="checkTime()">
<center>
<DIV style="position:absolute;top:40px;left:40px">
<DIV style="position:absolute;top:0px;left:0px">
<img src="1.jpg">
</DIV>
<DIV style="position:absolute;top:0px;left:0px">
<OBJECT ID="secondObj" STYLE="width:274px;height:175px" CLASSID="CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6">
<PARAM NAME="HighQuality" VALUE="1">
<PARAM NAME="Line0001" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0002" VALUE="SetFillColor(0,255,255)">
<PARAM NAME="Line0003" VALUE="SetFillColor(00,255,255)">
<PARAM NAME="Line0004" VALUE="Rect(0,0,2,64)">
</OBJECT>
</DIV>
<DIV style="position:absolute;top:0px;left:0px">
<OBJECT ID="minuteObj" STYLE="width:274px;height:175px" CLASSID="CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6">
<PARAM NAME="HighQuality" VALUE="1">
<PARAM NAME="Line0001" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0002" VALUE="SetFillColor(00,255,255)">
<PARAM NAME="Line0003" VALUE="SetFillColor(00,255,255)">
<PARAM NAME="Line0004" VALUE="Rect(0,0,3,60)">
</OBJECT>
</DIV>
<DIV style="position:absolute;top:0px;left:0px">
<OBJECT ID="hourObj" STYLE="width:274px;height:175px" CLASSID="CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6">
<PARAM NAME="HighQuality" VALUE="1">
<PARAM NAME="Line0001" VALUE="SetFillStyle(1)">
<PARAM NAME="Line0002" VALUE="SetFillColor(00,255,255)">
<PARAM NAME="Line0003" VALUE="SetFillColor(00,255,255)">
<PARAM NAME="Line0004" VALUE="Rect(0,0,4,32)">
</OBJECT>
</DIV>
</DIV>
</center>
</body>
</html>
А вот работоспособная версия (с изображением самих часов):
Скачать файл: bb.rarСкачан раз: 699 |