我做了一个照片库,每张照片都带有:
new Tween(uiLoader,"rotationX",Elastic.easeOut,90,0,4,true);
这很酷,但是如果所有照片都以相同的方式出现,那么查看它会有点分层。所以我想问这里是否有任何代码可以使其随机渐变、百叶窗、虹膜、飞行、溶解、挤压、擦拭、缩放、rotationX、Elastic.easeOut?? 这是我的代码:
function completeHandler(event:Event):void
{
uiLoader.x = (back.width - uiLoader.content.width) >> 1;
uiLoader.y = (back.height - uiLoader.content.height) >> 1;
new Tween(uiLoader,"rotationX",Elastic.easeOut,90,0,4,true);
}