You can embed an SVG file into into an (X)HTML 5 document:
<object data="anim.svg" id="svganim"/>
or
<img src="anim.svg" alt="embedded SVG"/>
But if anim.svg is animated, the animation will start playing as soon as the page loads.
How can you embed an animated SVG file such that the animation starts out paused? The user can then play the animation by pressing a button (using unpauseAnimations() in Javascript)
An inelegant way
window.onload = function() {
var svg_anim = document.getElementById('svganim').contentDocument.rootElement;
svg_anim.pauseAnimations();
};
Disadvantage: this doesn't work if the embedded SVG is in a different security context from the parent document. Is there a better way?
