jQuery Animation

by alekskorovin

HTML

<button>Start Animation</button>
<div class="block" style="left: 0;"></div>

CSS

.block {
    width: 100px; height: 100px;
    background: blue;
    position: relative;
}

JavaScript

$( "button" ).click(function(){
  $( ".block" ).animate({ "left": "+=200px" }, 1000 );
});