Animation on GPU vs CPU vs jQuery
HTML
<div id="box"></div>
CSS
#box {
background-color: #9cf;
height: 50px;
position: relative;
width: 50px;
}
JavaScript
function goToRight() {
$('#box').animate({ left:200 }, 3000, 'linear');
}
goToRight();