Currently, I am using this CSS animation method:
$(".left").animate({
left: '300px',
width: '300px',
height: '300px',
top: '25px'
}, 1000,'easeInOutQuint', function() {
});
I attempted to include a transform
property but it doesn't appear to be functioning. Is there a solution available?
Fiddle