I would like to move a circle along a circular path using HTML/CSS/JavaScript. Is there a way to achieve this? The code for circle is added below:
.circle {
width: 50px;
height: 50px;
display: block;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
color: #fff;
background-color: #b9c1de;
}
<div class="circle"></div>
You can achieve this with pure css3. Write like this:
CSS
HTML
Check this http://jsfiddle.net/r4AFV/
UPDATED
http://jsfiddle.net/r4AFV/1/