Hi,
I am making a javascript animator which will animate a checker game on a board.
Is there any way in HTML(object?) or javascript to create a simple circle image? I need to be able to manipulate the location of the circles when pieces are moved.
Printable View
Hi,
I am making a javascript animator which will animate a checker game on a board.
Is there any way in HTML(object?) or javascript to create a simple circle image? I need to be able to manipulate the location of the circles when pieces are moved.
You cannot create images in HTML or JavaScript. You can in SVG, but support for direct XML embedding is sparse, AFAIK the only browser capable of that is a custom Mozilla build.
But you can absolutly position div or img tags that contain an image of a circle.
I guess I will just use regular images then.
Thanks