Вот более конкретноый вопрос: как оставить за этим самолётом шлейф (простая горизонтальная линия)?
<!DOCTYPE HTML>
<html>
<head>
<title>test.com</title>
<style type="text/css">
div#block {
position: absolute;
}
div#sky {
width: 300px;
height: 150px;
border: 3px blue solid;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// Using multiple unit types within one animation.
$("#go").click(function(){
$("#block").animate({
left: "240px",
}, "slow" );
});
});
</script>
</head>
<body>
<button id="go">Run</button>
<div id="sky">
<div id="block">
<img src="http://samara.turprofi.ru/forum/index.php?PHPSESSID=bc74bb8aa06fa9cb3f088effb3ec56c3&action=dlattach;attach=1852;type=avatar" />
</div>
</div>
</body>
</html>