拉斐尔订购物品
我正在尝试订购拉斐尔的物品。我无法决定何时创建对象,但我想让一组对象在创建后出现在一组其他对象的后面。有人可以帮我做这个吗?
谢谢。
I'm trying to order Raphael objects. I don't have the option of deciding when the objects are created, but I'd like to make a group of objects appear behind a group of other objects after they've been created. Can anybody help me do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将项目分为两个集合,并使用 insertBefore 或 insertAfter:
此外,如果您的项目位于数组中,则可以使用
apply
来方便:Group you items in two sets and position the sets relative to each other with insertBefore or insertAfter:
Also if you have your items in arrays you can use
apply
for convenience:您可以使用
toBack
。 http://raphaeljs.com/reference.html#toBack它将把一个对象放在另一个对象后面对象,无论您何时创建它。
You can use
toBack
. http://raphaeljs.com/reference.html#toBackIt will put an object behind the other objects regardless of when you created it.