bitovi / jquerypp

jQuery's missing utils and special events
http://jquerypp.com
MIT License
1.21k stars 160 forks source link

animation: support of transform/transition #61

Open zazabe opened 12 years ago

zazabe commented 12 years ago

Hi,

I can't find documentation about the support of "transform" property by jquerypp, also nothing about 2D and 3D transitions.

I would like to do something like:

$('#something').css({transform: 'rotate(10deg)'});
$('#something').css({transform: 'rotate(10deg)', transformOrigin: '50% 100%'});

$('#something').animate({transform: 'translateX(10px) rotate(10deg)'}, 1000);
$('#something').animate({transform: '+= translateX(10px)'}, 1000);

Is it planned to support it ?

Thanks for all :)

datiecher commented 11 years ago

Any input on this issue by the Bitovi guys?

daffl commented 11 years ago

I don't think this is part of the jQuery animation API right? Planning to rewrite the animation plugin for a while now. Would definitely be a feature worth considering then.