干净,快速,简单的解决方案张贴在这个答案的日期是不令人满意的。它们是基于SVG文档缺乏z顺序这一错误语句构建的。库也不是必需的。一行代码就可以执行大多数操作来操纵对象的z顺序或对象组,这可能是开发在x-y-z空间中移动2D对象的应用程序所需要的。
SVG文档片段中绝对存在Z顺序
所谓的SVG文档片段是派生自基本节点类型SVGElement的元素树。SVG文档片段的根节点是SVGSVGElement,它对应于HTML5 < SVG >标记。SVGGElement对应于<g>标记,并允许聚合子元素。
像在CSS中那样在SVGElement上使用z-index属性将会破坏SVG呈现模型。W3C SVG推荐v1.1第二版的3.3和3.4节指出,SVG文档片段(SVGSVGElement的子代树)是使用所谓的深度优先搜索树来呈现的。这个方案在任何意义上都是z阶的。
Z顺序实际上是一种计算机视觉的快捷方式,以避免对光线追踪的复杂性和计算需求的真正3D渲染的需求。SVG文档片段中元素的隐式z索引的线性方程。
z-index = z-index_of_svg_tag + depth_first_tree_index / tree_node_qty
这很重要,因为如果你想把一个在正方形下面的圆移动到它上面,你只需要把正方形插入到圆前面。这可以在JavaScript中轻松完成。
支持方法
SVGElement实例有两个方法支持简单的z顺序操作。
parent.removeChild(孩子)
的父母。方法(孩子,childRef)
不会造成混乱的正确答案
因为SVGGElement (<g>标记)可以像SVGCircleElement或任何其他形状一样轻松地删除和插入,所以可以使用SVGGElement轻松实现Adobe产品和其他图形工具的典型图像层。这个JavaScript实际上是一个Move Below命令。
parent.insertBefore(parent.removeChild(gRobot), gDoorway)
如果作为SVGGElement gRobot的子元素绘制的机器人层在作为SVGGElement g门口的子元素绘制的门口层之前,那么机器人现在在门口的后面,因为门口的z阶现在是1加上机器人的z阶。
“移动到上方”命令几乎同样简单。
parent.insertBefore(parent.removeChild(gRobot), gDoorway.nextSibling())
只要考虑a=a和b=b就能记住。
insert after = move above
insert before = move below
使DOM处于与视图一致的状态
这个答案是正确的,因为它是最小和完整的,并且像Adobe产品或其他设计良好的图形编辑器的内部一样,使内部表示处于与呈现所创建的视图一致的状态。
替代但有限的方法
另一种常用的方法是将CSS z-index与多个SVG文档片段(SVG标签)结合使用,除了底部的部分,其余部分的背景都是透明的。这再次破坏了SVG呈现模型的优雅性,使得在z顺序上向上或向下移动对象变得困难。
注:
(https://www.w3.org/TR/SVG/render.html v 1.1, 2nd Edition, 16 August 2011)
3.3 Rendering Order Elements in an SVG document fragment have an implicit drawing order, with the first elements in the SVG document
fragment getting "painted" first. Subsequent elements are painted on
top of previously painted elements.
3.4 How groups are rendered Grouping elements such as the ‘g’ element (see container elements) have the effect of producing a temporary
separate canvas initialized to transparent black onto which child
elements are painted. Upon the completion of the group, any filter
effects specified for the group are applied to create a modified
temporary canvas. The modified temporary canvas is composited into the
background, taking into account any group-level masking and opacity
settings on the group.