Set of functions to animate elements with webkit using jQuery.
http://www.imekinox.com/webkit_demo/demo/webkit-test.html
$(".test").alphaTo(0,5);
$(".test").slideTo(200,200,3);
$(".test").glowTo(40,"#F00",1);
$(".test").rotateX(360,3, "linear", function(){
$(".test").rotateX(0,3, "linear");
});
$(".test").rotateY(360,3, "linear", function(){
$(".test").rotateY(0,3, "linear");
});
$(".test").doTween({
time: 3,
keyframes: {
"0%": {
top: "100px",
transform: {
rotateY:"25deg",
rotateX:"45deg"
}
},
"50%": {
top: "400px",
transform: {
rotateY:"360deg",
rotateX:"0deg"
}
},
"100%": {
top: "100px",
transform: {
rotateY:"25deg",
rotateX:"45deg"
}
}
}
});