jQuery.fx object example
by Lucas Krause
HTML
<div class="a"></div>
CSS
.a {
width:20px;
}
JavaScript
$(".a").animate({"width":"100px"}, {"duration":500, "step":function(now, fx){
console.log($.extend({}, fx));
}});
by Lucas Krause
<div class="a"></div>
.a {
width:20px;
}
$(".a").animate({"width":"100px"}, {"duration":500, "step":function(now, fx){
console.log($.extend({}, fx));
}});