-->
Virtual horse game
Script: JSClock
Version: 0.1
Author: Bogdan Ionescu
Email: bogdan.ionescu[at]gmail.com
License: LGPL (gnu.org)
Browsers: IE 5+, Mozilla, Opera7, Netscape
Download JSClock v.01
Other scripts

avirtualhorse.com
Moving script
Javascript effects
JSClock 0.1 supports:

1. More active clocks
2. Different times on clocks
3. Styles for the hours
4. Different strings for hours
5. Resizing the clocks

To do in the next versions:

1. Some nicer drawings
2. More functions for designers
3. Attach a digital clock
4. Allowing users to change time
5. Adding some label support
6. Maybe turn it into a widget
7. Implementing suggestions?

<script>
var w = new JSClock('cl1');
w.setFontSize(18); 
w.setHours('',hrs1);
w.start();
</script>
This clock displays the current time
<script>
var w1= new JSClock('cl2');
w1.setParent(document.getElementById('pa'));
w1.setHours(hrs2,hrs2);
w1.setSize(80);
w1.drawC('red');
var diffTime = 10*60*1000+15000
w1.setTime(new Date(new Date().getTime()- diffTime));
w1.start();
</script>
This clock displays the current time minus 10 minutes