如何在 AS3 中创建这样的掩码?

发布于 2024-09-05 01:09:48 字数 285 浏览 6 评论 0原文

我在 AS3 中使用过一些掩码,但我不确定如何使用掩码来做到这一点。

我有两个 swf 文件,已作为带有类名的 MC 导入到库中。

其中一个文件是起始图像,另一个是结束图像。过渡是从开始图像到结束图像的幻灯片过渡。您可以像 这个示例中那样思考过渡。

但是是否可以进行幻灯片像这样使用两个 swf 并在它们之间进行“幻灯片过渡”?

I've worked a little bit with masks in AS3 but I'm not sure how I can do this with masks.

I have two swf files that I have imported onto the Library as MC's with class names.

One of the files is the start image and the other is the end image. The transition is a slide transition from the start image to the end image. You can think of the transition like in this example.

But is it possible to do a slide transition like this using two swf's and "slide transitioning" between them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皓月长歌 2024-09-12 01:09:48

我找到了答案。

Mask.graphics.beginFill(0xFF0000);
Mask.graphics.drawRect(x, y, some.width, some.height);

Image.mask = Mask;

其实很简单,如果你添加子图像和遮罩,那么遮罩将使图像透明,你可以随意移动遮罩。

I found the answer.

Mask.graphics.beginFill(0xFF0000);
Mask.graphics.drawRect(x, y, some.width, some.height);

Image.mask = Mask;

Was pretty simple actually, if you addChild Image and Mask, then mask will make Image transparent and you can move Mask around as you please.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文