dcol='000000';//date colour.
fcol='000000';//face colour.
scol='000000';//seconds colour.
mcol='000000';//minutes colour.
hcol='000000';//hours colour.
clockheight=40;
clockwidth=40;
clockfrommousey=0;
clockfrommousex=100;
//alter nothing below! alignments will be lost!
d=new array("sunday","monday","tuesday","wednesday","thursday","friday","saturday");
m=new array("january","february","march","april","may","june","july","august","september","october","november","december");
date=new date();
day=date.getdate();
year=date.getyear();
if (year < 2000) year=year+1900;
todaysdate=" "+d[date.getday()]+" "+day+" "+m[date.getmonth()]+" "+year;
d=todaysdate.split('');
h='...';
h=h.split('');
m='....';
m=m.split('');
s='.....';
s=s.split('');
face='1 2 3 4 5 6 7 8 9 10 11 12';
font='arial';
size=1;
speed=0.6;
ns=(document.layers);
ie=(document.all);
face=face.split(' ');
n=face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="";
props2="";
split=360/n;
dsplit=360/d.length;
handheight=clockheight/4.5
handwidth=clockwidth/4.5
handy=-7;
handx=-2.5;
scrll=0;
step=0.06;
currstep=0;
y=new array();x=new array();y=new array();x=new array();
for (i=0; i < n; i++){y[i]=0;x[i]=0;y[i]=0;x[i]=0}
dy=new array();dx=new array();dy=new array();dx=new array();
for (i=0; i < d.length; i++){dy[i]=0;dx[i]=0;dy[i]=0;dx[i]=0}
if (ns){
for (i=0; i < d.length; i++)
document.write('
'+props2+d[i]+'
');
for (i=0; i < n; i++)
document.write('
'+props+face[i]+'
');
for (i=0; i < s.length; i++)
document.write('
'+s[i]+'
');
for (i=0; i < m.length; i++)
document.write('
'+m[i]+'
');
for (i=0; i < h.length; i++)
document.write('
'+h[i]+'
');
}
if (ie){
document.write('');
for (i=0; i < d.length; i++)
document.write(''+props2+d[i]+'
');
document.write('
');
document.write('');
for (i=0; i < n; i++)
document.write(''+props+face[i]+'
');
document.write('
');
document.write('');
for (i=0; i < h.length; i++)
document.write(''+h[i]+'
');
document.write('
');
document.write('');
for (i=0; i < m.length; i++)
document.write(''+m[i]+'
');
document.write('
')
document.write('');
for (i=0; i < s.length; i++)
document.write(''+s[i]+'
');
document.write('
')
}
(ns)?window.captureevents(event.mousemove):0;
function mouse(evnt){
ymouse = (ns)?evnt.pagey+clockfrommousey-(window.pageyoffset):event.y+clockfrommousey;
xmouse = (ns)?evnt.pagex+clockfrommousex:event.x+clockfrommousex;
}
(ns)?window.onmousemove=mouse:document.onmousemove=mouse;
function clockandassign(){
time = new date ();
secs = time.getseconds();
sec = -1.57 + math.pi * secs/30;
mins = time.getminutes();
min = -1.57 + math.pi * mins/30;
hr = time.gethours();
hrs = -1.575 + math.pi * hr/6+math.pi*parseint(time.getminutes())/360;
if (ie){
od.style.top=window.document.body.scrolltop;
of.style.top=window.document.body.scrolltop;
oh.style.top=window.document.body.scrolltop;
om.style.top=window.document.body.scrolltop;
os.style.top=window.document.body.scrolltop;
}
for (i=0; i < n; i++){
var f=(ns)?document.layers['nsface'+i]:ieface[i].style;
f.top=y[i] + clockheight*math.sin(-1.0471 + i*split*math.pi/180)+scrll;
f.left=x[i] + clockwidth*math.cos(-1.0471 + i*split*math.pi/180);
}
for (i=0; i < h.length; i++){
var hl=(ns)?document.layers['nshours'+i]:iehours[i].style;
hl.top=y[i]+handy+(i*handheight)*math.sin(hrs)+scrll;
hl.left=x[i]+handx+(i*handwidth)*math.cos(hrs);
}
for (i=0; i < m.length; i++){
var ml=(ns)?document.layers['nsminutes'+i]:ieminutes[i].style;
ml.top=y[i]+handy+(i*handheight)*math.sin(min)+scrll;
ml.left=x[i]+handx+(i*handwidth)*math.cos(min);
}
for (i=0; i < s.length; i++){
var sl=(ns)?document.layers['nsseconds'+i]:ieseconds[i].style;
sl.top=y[i]+handy+(i*handheight)*math.sin(sec)+scrll;
sl.left=x[i]+handx+(i*handwidth)*math.cos(sec);
}
for (i=0; i < d.length; i++){
var dl=(ns)?document.layers['nsdate'+i]:iedate[i].style;
dl.top=dy[i] + clockheight*1.5*math.sin(currstep+i*dsplit*math.pi/180)+scrll;
dl.left=dx[i] + clockwidth*1.5*math.cos(currstep+i*dsplit*math.pi/180);
}
currstep-=step;
}
function delay(){
scrll=(ns)?window.pageyoffset:0;
dy[0]=math.round(dy[0]+=((ymouse)-dy[0])*speed);
dx[0]=math.round(dx[0]+=((xmouse)-dx[0])*speed);
for (i=1; i < d.length; i++){
dy[i]=math.round(dy[i]+=(dy[i-1]-dy[i])*speed);
dx[i]=math.round(dx[i]+=(dx[i-1]-dx[i])*speed);
}
y[0]=math.round(y[0]+=((ymouse)-y[0])*speed);
x[0]=math.round(x[0]+=((xmouse)-x[0])*speed);
for (i=1; i < n; i++){
y[i]=math.round(y[i]+=(y[i-1]-y[i])*speed);
x[i]=math.round(x[i]+=(x[i-1]-x[i])*speed);
}
clockandassign();
settimeout('delay()',20);
}
if (nsie)window.onload=delay;
hi guys this is
amazing.
i do not know who wrote this html code.
asoka liyanage
Java Asp PHP .Net XML C/C++ CGI VB Jsp J2ee J2se J2me EJB Servlet Tomcat Resin Struts Weblogic Eclipse ANT GUI JMS Web servise IDEA Webphere Hibernate Spring Jboss Applet Swing Socket Javamail Perl Ajax P2P 安全 模式 框架 测试 开源 游戏
Windows XP Windows 2000 Windows 2003 Windows Me Windows 9.x Linux UNIX 注册表 操作系统 服务器 应用服务器