如何为组件(VBox/HBox 等...)创建 Flex Wobble 效果
谁能告诉我如何使用 flex 3 创建摆动效果? 我需要类似 ubuntu 中看到警报或移动文件夹时显示的效果。
谢谢。
Can anyone tell me how can we create a wobbling effect using flex 3?
I need something like the effect which is show in ubuntu when we see an alert or move a folder.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定 Flex 中是否有专门内置的东西来专门处理“摆动”效果,但您可以结合 Flex 移动和弹跳效果来创建一种“摆动”:
自定义上面的代码以进行更小的移动并链接左右移动,并且您有一个摆动。您可能还决定为 MouseEvent.ROLL_OVER 添加事件侦听器,以便在鼠标滑过组件时播放摆动效果。
Not sure if there is anything specifically built in Flex to handle the "wobble" effect specifically, but you can combine the Flex Move and bounce effects to create a kind of "wobble":
Customize the code above to make smaller movements and link the left and right moves, and you have a wobble. You might also decide to add an event listener for the MouseEvent.ROLL_OVER to play the wobble effect when the mouse rolls over the component.