我想使用animateTransform連續旋轉SVG圖像。所以我們走:如何在使用animateTransform時指定x-y旋轉點?
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1024px" height="768px" enable-background="new 0 0 100 100" xml:space="preserve">
<g transform="translate(100, 100)">
<rect fill="#FE9FFF" width="100px" height="100px">
<animateTransform attributeName="transform" type="rotate"
from="0" to="360" dur="20s" repeatDur="indefinite"/>
</rect>
</g>
</svg>
這個工程。
現在:我想改變上面的內容,以便塊圍繞其中心而不是左上角旋轉。我知道,如果我想靜態旋轉塊圍繞其中心,我可以這樣做:
<g transform="rotate(30, 50, 50)">
<rect fill="#FE9FFF" width="100px" height="100px">
</rect>
</g>
我的問題是 - 我怎麼管理各地塊的中心連續的動畫旋轉?我已經看過spec和other related questions這兩個,但是我在執行提供的解釋時遇到了問題。
在此先感謝。