SVG的应用顺序转换

时间:2013-09-03 01:51:08

标签: html svg

W3C's spec中,它说:

  

'transform'属性的值是< transform-list>,它被定义为变换定义列表,它按照提供的顺序应用。

     

...

     

如果提供了变换列表,则净效果就好像每个变换都是按照提供的顺序单独指定的

当我尝试使用firefox,chrome和IE10中的跟随标记时,所有三个都通过首先进行翻译,然后通过旋转进行渲染!请参阅codepen snippet。我错过了什么?或者3个浏览器的实现不符合W3C?

<svg width="180" height="200"
  xmlns="http://www.w3.org/2000/svg" 
  xmlns:xlink="http://www.w3.org/1999/xlink">

  <!-- This is the element before translation and rotation are applied -->
  <rect x="0" y="0" height="100" width="100" style="stroke:#000; fill: #0086B2" fill-opacity=0.2 stroke-opacity=0.2></rect>

  <!-- Now we add a text element and apply rotate and translate to both -->
  <rect x="0" y="0" height="100" width="100" style="stroke:#000; fill: #0086B2" transform="rotate(45 100 50) translate(50)"></rect>
</svg>

2 个答案:

答案 0 :(得分:15)

The specification非常清楚最先应用最右边的变换的顺序。

  

如果提供了变换列表,那么净效果就好像每个变换都是按照提供的顺序单独指定的。

即,

<g transform="translate(-10,-20) scale(2) rotate(45) translate(5,10)">
  <!-- graphics elements go here -->
</g>

在功能上等同于:

<g transform="translate(-10,-20)">
  <g transform="scale(2)">
    <g transform="rotate(45)">
      <g transform="translate(5,10)">
        <!-- graphics elements go here -->
      </g>
    </g>
  </g>
</g>

答案 1 :(得分:0)

If you want to sequentially change these transformations 
you have to try this one

<g transform="translate(-10,-20)  onmouseover=changeTransform(evt)">

function changeTransfrom(evt)
{
var id=evt.target;
id.setAttribute('transform',scale(0.5));
id.setAttribute('transform',rotate(30));
id.setAttribute('transform',skewY(45));
id.setAttribute('transform',matrix(2,2));
}