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;
border-radius:50px;
-moz-border-radius:50px;
-webkit-border-radius:50px;
-khtml-border-radius:50px;
color:#fff;
background-color:#b9c1de;
}
<div class="circle"></div>
