I have a small working piece.
HTML:
<div id="it">X</div>
CSS:
#it {
background: blue;
width: 40px;
text-align: center;
color: white;
padding: 10px 0;
border: solid 1px black;
border-radius: 25px;
position: absolute;
left: 100px;
top: 100px;
}
JS:
$('#it').animate({
left: '+=100',
top: '+=100'
}, 400, function() {
$(this).animate({
top: '-=100'
}, 400, function() {
$(this).animate({
left: '-=100',
top: '+=100'
}, 400, function() {
$(this).animate({
top: '-=100'
}, 400);
});
});
});
Everything aforementioned put together in this jsfiddle
What I need help with:
- Loop the JS. Besides, I'm almost sure that something can be done to simplify that repeated nested code.
- Make the movement smooth. I.e., make the object fly in a single curved line tracing a "tilted 8" shape, rather than in 4 strait lines.
- If possible, get rid of JS and replace it with CSS3.
Also not necessarily required for my project, but would be amazing if there was a way to rotate the object along the way so it always faces the direction it is heading. Like as if you were watching a race car from above.
