Flex 中需要过滤器
我需要我的视觉内容变得更暗(就像显示模式警报时一样)。我试图查找 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将
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);
您可以在 styles 中的
global
标识符上设置 4 种样式来设置所有模态弹出背景效果。我想你会想要这样的东西: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:无论您使用什么,创建一个新的 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.