如何使 Flex 4 图像变亮或变暗
有没有办法在鼠标悬停时使图像或实际上任何显示对象变暗或变亮,然后在鼠标移开时将其恢复回来?如果可能的话,我更愿意使用过滤器,因为我已经在鼠标悬停时应用过滤器并在鼠标移出时将其删除。然后我就可以将其添加到过滤器列表中。如果没有也没关系。在我的代码中,我使用的是 Flex 4 Spark Image 组件。
Is there a way to darken or lighten an image or actually any display object on mouse over and then restore it back on mouse out? I would prefer to use filters if possible just because I am already applying a filter on mouse over and removing it on mouse out. I would then be able to add it to the filters list. If not that's fine. In my code I'm using a Flex 4 Spark Image component.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,您应该使用 ColorTransform。下面显示了如何利用它。
这应该可以解决问题。有关 ColorTransform 的更多信息:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/geom/ColorTransform.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
You should use ColorTransform for this. Below is shown how you can utilise this.
this should do the trick. For more information on ColorTransform: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/geom/ColorTransform.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
最简单的方法是,创建一个滤色器,并在鼠标悬停时将此滤色器应用到图像,并在卷展时删除该滤色器。
详情请访问:
http://cookbooks.adobe.com/post_Convert_images_to_grayscale_using_ActionScript_-12769.html
谢谢
The easiesy way to do is, create a colorfilter, and apply this colorfilter to the image on rollover and remove the filter on rollout.
For details visit :
http://cookbooks.adobe.com/post_Convert_images_to_grayscale_using_ActionScript_-12769.html
Thanks