我必須使用JavaScript旋轉三個SVG對象,而不是使用<animation>
標記。樹頂部的大明星旋轉正確,但從其他人中我找不到中心座標。JS與SVG:圍繞其中心旋轉SVG元素
這是繼星和JS旋轉:
star2.setAttribute("transform", "rotate(" + angle + " 2000 200)");
,這是SVG:
<defs>
<symbol id="stern">
<polygon points="1000 50 1100 310 850 160 1150 160 900 310 1000 50" fill="yellow" />
</symbol>
</defs>
<use id="stern2" xlink:href="#stern" transform="translate(500,600) scale(0.5)" onmouseover="rotate2();" onmouseout="stop();" />
這裏是一個小提琴:
你的小提琴不工作。 –