Flex 中需要过滤器

发布于 2024-10-31 11:15:23 字数 108 浏览 4 评论 0原文

我需要我的视觉内容变得更暗(就像显示模式警报时一样)。我试图查找 Alert 和 PopUpManager 的源代码,但发现那里只有模糊和淡入淡出效果...是否有任何基本过滤器可以将内容设置得更暗?谢谢

I need my visual content to become darker (like when modal Alert is shown). I've tried to look up in the source code of Alert and PopUpManager, but found only blur and fade effects there... Is there any basic Filter to do set content darker? Thanks

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

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

发布评论

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

评论(3

揪着可爱 2024-11-07 11:15:23

您可以将 ColorTransform 与颜色倍增器结合使用:
component.transform.colorTransform = new ColorTransform(0.5, 0.5, 0.5);

You can use ColorTransform with color multipliers:
component.transform.colorTransform = new ColorTransform(0.5, 0.5, 0.5);

梦里寻她 2024-11-07 11:15:23

您可以在 styles 中的 global 标识符上设置 4 种样式来设置所有模态弹出背景效果。我想你会想要这样的东西:

global
{
   modal-transparency-blur:0; /* no blur */
   modal-transparency:0.5;
   modal-transparency-color:#000000;
   modal-transparency-duration:0; /* no animation, goes straight to faded black.  in ms */
}

There are 4 styles you can set on the global identifier in styles to set all modal popup background effects. I think you'll want something like this:

global
{
   modal-transparency-blur:0; /* no blur */
   modal-transparency:0.5;
   modal-transparency-color:#000000;
   modal-transparency-duration:0; /* no animation, goes straight to faded black.  in ms */
}
感受沵的脚步 2024-11-07 11:15:23

无论您使用什么,创建一个新的 UIComponent/Sprite,将其设置为黑色,不透明度为 50%,然后将其推到显示列表顶部,就在您想要显示的内容下方。

What about creating a new UIComponent/Sprite whatever you use, making it black with opacity liek 50% and pushing on top of the display list just below stuff you want to show.

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