Je cherche à animer un svg: Je voudrais un rectangle qui clignote toutes les 5 secondes.
Je me suis basé là dessus:
http://www.kevlindev.com/tutorials/basics/animation/svg_smil/index.(...)
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd(...)">
<svg xmlns="http://www.w3.org/2000/svg(...)"
xmlns:xlink="http://www.w3.org/1999/xlink(...)">
Chez moi ça marche pas. ça boucle pas apparemment. Alors j'ai rien compris ou c'est ksvg qui sait pas y faire?
# Le code avec balises...
Posté par fleny68 . Évalué à 1.
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg11.dtd(...)">
< svg xmlns="http://www.w3.org/2000/svg(...)"
xmlns:xlink="http://www.w3.org/1999/xlink(...)">
< rect y="45" width="30" height="10" fill="red"
style="visibility:hidden" >
< set attributeName="visibility" attributeType="CSS" to="visible"
begin="3s" dur="5s" repeatCount="indefinite"/ >
</ rect>
</ svg>
enlevez les espaces devant svg, rect et set pour que ça corresponde. J'ai pas trouvé comment faire autrement...
Suivre le flux des commentaires
Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.