我正在开发一个包含两个图像的项目,一个背景(B)和一个前景(F)。
我的目标是让(F)“烧掉”以显示(B)。目前我正试图用圆形面具做这件事。我可以让我的面具静态出现,但无论我尝试什么,我都无法让面膜长大以显示更多的(B)。有任何想法吗?这是我现在的代码
var BackgroundBitmap:Bitmap = new Background();
addChild(BackgroundBitmap);
var BurnThroughBitmap:Bitmap = new BurnThrough();
addChild(BurnThroughBitmap);
drawCircle(); //creates circle "mycircle:MovieClip" with radius 100 at a predefined point
BurnThroughBitmap.mask = mycircle; //this sucessfully masks the two images, revealing the background
TweenLite.to(mycircle, 14, { scaleX:1.5, scaleY:1.5 } ); //this doesn't work :(
有任何建议或替代方法吗?
谢谢!