我使用path和animateMotion。它運行良好,直到我試圖使用JavaScipt動態生成它。我用jQuery SVGSVG animateMotion&JavaScript
我試圖追加動畫代碼usind本地方法:
$("#scheme_wrapper").svg();
var svg=box.svg('get');
svg.add('<rect x="10" y="10" width="20" height="20" fill="red"><animateMotion id="KKK" path="M300,200 a100,100 0 1,0 -100,100 a100,100 0 0,0 100,-100" dur="20s" rotate="auto" repeatCount="indefinite" /></rect>');
我看到紅色的小矩形,但是動畫不啓動。但是,如果我用這個動畫代碼創建svg文件 - rectagle成功移動。爲什麼?如何使用JavaScript動態創建animateMotion?
我使用Firefox和Opera。每個瀏覽器都有這樣的問題 – AlexFox
在我的答案中查看bugzilla鏈接中的測試用例。這適用於Firefox和Opera。 –