|
EXAMPLE
You can see it moving after your cursor.
1) Insert this script right below the <BODY> tag
of the page.
2) Define the colors, the size and the position related to the
mouse pointer in this section of the script:
dCol='000080'; // date color
fCol='cc3333'; // face color
sCol='000000'; // seconds color
mCol='008080'; // minutes color
hCol='808080'; // hours color
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
Adjusting the speed of the spinning date:
setTimeout('Delay()',40); // the
larger the value the slower the speed
|