Heygrady + Stylesheet
HTML
<script src="https://github.com/heygrady/transform/raw/master/dist/jquery.transform-0.9.3.js"></script>
<div id="test"></div>
CSS
#test {
width: 30px;
height: 30px;
top: 120px;
left: 120px;
background: blue;
-moz-transform: translate(50px);
-webkit-transform: translate(50px);
-ms-transform: translate(50px);
-o-transform: translate(50px);
}
JavaScript
$("#test").animate({rotate: "45deg"});