JQuery css VS GSAP css

Benchmark created by Alex on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.8/TweenMax.min.js"></script>


<div id="target"></div>

Setup

var t1 = document.getElementById("target");
    var $t1 = $("#target");

Test runner

Ready to run.

Testing in
TestOps/sec
GSAP
TweenLite.to(t1, 1, {left:100});
ready
JQuery
$t1.css("left",100);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.