ActionScript中是否有像css-zIndex这样的函数或属性?
我想控制哪个DisplayObject显示在前面或后面。
我可以使用 css 中的 zIndex 样式来控制它。
我怎样才能在 as 中做到这一点?
I want to control which DisplayObject is displayed on the front or on the back.
I can control that with zIndex style in css.
How can I do that in as?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看
setChildIndex()
这是一个快速函数,可以让您将某物放置在最高深度:
Look at
setChildIndex()
Here's a quick function that will let you place something at the highest depth:
要控制显示对象的 z 顺序,请使用 setChildIndex()。
索引最低的子项显示在底部。
索引最高的子项显示在顶部。
要更改子项的 zorder,请使用 setChildIndex,举例说明:
To control the z-order of the displayObjects use setChildIndex().
Lowest indexed children are displayed at the bottom.
Highest indexed children are displayed at the top.
To change the zorder of the children, use setChildIndex, to illustrate:
除了设置“z-index”之外,还有更多选项,您可以完全控制图层:
从特定索引获取对象
从特定对象
获取索引 在顶部 (addChild) 或在特定索引 (addChildAt) 添加对象
通过“z-index”相互交换对象
There are even more options than only setting the 'z-index', you have full control on the layers:
Gets an object from certain index
Gets a index from certain object
Adds a object on top (addChild) or at certain index (addChildAt)
Swap objects with eachother of by its 'z-index'