How can I use "Jquery Transformation" or "CSS3 3D" inside Edge-Animate coding environment?
Examples of what i m looking for:
http://www.w3schools.com/css3/css3_3dtransforms.asp
https://github.com/heygrady/transform/wiki
So far the only way i know to apply transform is to animate css attributes as highlighted on Css panel (left side),
Ex:This is the only way i know to scale something :
symbol.$("ball").css({transform: 'scale(' + 1.2 + ')'})
symbol.$("ball").css({'-moz-transform': 'scale(' + 1.2 + ')','-webkit-transform': 'scale(' + 1.2+ ')'});
Imagine i want to create effects such as Flipping a Card or some 3d stuff that requires skew and 3d rotation.