<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>animate demo</title>
<style>
div.block {
position: absolute;
left: 650px;
background-color: #abc;
width: 300px;
height: 40px;
float: left;
margin: 5px;
}
div.block1 {
position: absolute;
left: 650px;
top: 150px;
background-color: #abc;
width: 300px;
height: 40px;
float: left;
margin: 5px;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<p><button id="go">Getir</button></p>
<div class="block"></div>
<div class="block1"></div>
<script>
$( "#go" ).click(function() {
$( "div" ).animate({
left: 150
});
});
</script>
</body>
</html>Kendine göre ayarla. Biraz css bilgiside gerekli.