Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there a way to specify the angle when using

$(this).animate({'left': '+=30px'}, 1000);

I would like

$(this).animate({'48': '+=30px'}, 1000);

the 48 would be the angle

share|improve this question

1 Answer

up vote 6 down vote accepted

You can specify both left and top property:

$(this).animate({left: '+=30px', top: '+=30px'}, 1000);

In this case, the angle would be 45°.

To specify a different angle, first calculate cos(α) and sin(α). The cosinus specifies how far you have to go right, and the sinus how far to go up, to make a distance of 1 pixel in the specified angle. If you want to cover 30 pixels distance instead, multiply the sinus and cosinus results by 30.

share|improve this answer
3  
Just in case the second paragraph doesn't make sense: jsfiddle.net/SMvj3/3 – 32bitkid Jan 16 '12 at 21:05
1  
@thelost: After having calculated sin and cos, you can multiply both results with the same factor to specify the distance. As sin(45°)=cos(45°) and left=top, the angle is indeed 45°. – Yogu Jan 16 '12 at 21:08
1  
Yogu's example would move about 42px at a 45 degree angle. To move 30px at 45, you would have to Math.cos(Math.PI/4)*30. – 32bitkid Jan 16 '12 at 21:08
1  
I've edited the answer, is it clear now? – Yogu Jan 16 '12 at 21:34
1  
@thelost Behold! The unit circle: en.wikipedia.org/wiki/Unit_circle – 32bitkid Jan 16 '12 at 21:54
show 4 more comments

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.