Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

4 Answers

up vote 7 down vote accepted

You can achieve this with pure css3. Write like this:

CSS

.dot{
    position:absolute;
    top:0;
    left:0;
    width:50px;
    height:50px;
    background:red;
    border-radius:50%;
}
.sun{
    width:200px;
    height:200px;
    position:absolute;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:orbit;
    -webkit-animation-duration:5s;
    top:50px;
    left:50px;
}

@-webkit-keyframes orbit { 
from { -webkit-transform:rotate(0deg) } 
to { -webkit-transform:rotate(360deg) } 
}

HTML

<div class="sun">
 <div class="dot"></div>
</div>​

Check this http://jsfiddle.net/r4AFV/

UPDATED

http://jsfiddle.net/r4AFV/1/

share|improve this answer
Thanks for the replay. – Jayashankar Jun 12 '12 at 6:11
Sandeep +1 for this but its not working on firefox how can achieve the same result on firefox.... – Shailender Arora Jun 12 '12 at 6:12
+1 for CSS3! Note: This is only for Webkit browsers. – Derek 朕會功夫 Jun 12 '12 at 6:13
check my updated fiddle which is work in firefox also – sandeep Jun 12 '12 at 6:14
show 1 more comment

Hey this is not my code,

but check this link it may be helpful for you

http://jsfiddle.net/W69s6/20/

share|improve this answer
Thanks for the quick replay – Jayashankar Jun 12 '12 at 5:39
2  
Its better you paste the code also in your answer. It would be easier for others – anu Jun 12 '12 at 5:58
accept the answer if it meets your needs... – Sarin Jacob Sunny Jun 12 '12 at 6:23

It is Math time!

function circle(){
    var width = 10,
        height = 10,
        offsetX = 100,
        offsetY = 100,
        x = Math.cos(new Date()) * width + offsetX;   //Remember high school?
        y = Math.sin(new Date()) * height + offsetY;

    //Do whatever you want here with the coordinates.
    document.getElementsByClassName("circle")[0].style.left = x;
    document.getElementsByClassName("circle")[0].style.top = y;

    setTimeout(circle, 50);
}
share|improve this answer
Thanks for the replay – Jayashankar Jun 12 '12 at 6:12

Here's a pure JavaScript solution I threw together. Should have very good browser support (no CSS3 required). It's highly configurable. Make sure you look at the configuration options at the bottom of the JavaScript section. No library required.

http://jsfiddle.net/nN7ct/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.