Confirmed users
489
edits
Line 39: | Line 39: | ||
* Explain the significant file formats, names, syntax, and semantics. | * Explain the significant file formats, names, syntax, and semantics. | ||
** Main file format: SVG | |||
** Sample animation tag usage: | |||
<rect x="15" y="200" width="200" height="200" fill="blue"> | |||
<animate attributeName="y" from="100" to="200" begin="0s" dur="2s" fill="freeze"/> | |||
</rect> | |||
<rect x="15" y="200" width="200" height="200" fill="blue"> | |||
<animateTransform attributeName="transform" type="rotate" | |||
from="-30" to="0" | |||
begin="1s" dur="5s" fill="freeze"/> | |||
</rect> | |||
<circle cx="0" cy="0" stroke="black" r=".05" fill="orange" stroke-width="0.005"> | |||
<animate attributeName="cy" dur="3s" values="0; 1" | |||
calcMode="spline" keySplines=".5 0 .5 1" | |||
repeatDur="indefinite" /> | |||
<animate attributeName="cx" dur="3s" values="0; 1" | |||
repeatDur="indefinite" /> | |||
</circle> | |||
* Are the externally visible interfaces documented clearly enough for a non-Mozilla developer to use them successfully? | * Are the externally visible interfaces documented clearly enough for a non-Mozilla developer to use them successfully? |