It's time to add some cool professional effects to your WADE apps! With the new version of WADE you can easily apply 3D transforms to individual layers in your scene:
wade.setLayer3DTransform(layerId, 'rotateX(45deg)');
And on browsers that support hardware-accelerated CSS transitions, you can animate these 3D transforms just as easily:
wade.setLayer3DTransform(layerId, 'rotateX(45deg)', '', 2);
|