trying to change the css properties of an image using CSS Plugin in Createjs but i am not able to do so. Guys plz help
var wheel = new createjs.Bitmap(preload_queue.getResult("bg"));
stage.addChild(wheel);
wheel.set({x:0 ,y:0})
wheel.image.style.transform = "translate(20px, 30px)";
wheel.image.style.perspective= "2000px";
wheel.image.style.perspectiveOrigin = "left";
createjs.Tween.get(wheel)
.to({transform: "translate(500px, 50px)"}, 1000)