JS library : text zooming effect
Script is load on begin
You can choose style for text, timing and time to remove text.
You can put only a line in your text
In main SVG, for using effect, you have to
1) load script with <script xlink:href="textzoom.js.gz"/>
2) reserve at the end place for design with <g id="affiche" transform="translate(100,50)"></g>
by example
3) call it with
add_textzoom("affiche", 'Welcome', 10, 200,
'text-anchor:left;font-size:30;font-family:Arial;fill:blue;stroke:green', 2000,
2000, 1);
in order: name of group where create text, string for text, value for text x, value for
text y, style for text, timing, time before remove in milliseconds ( -1
don't remove text ), number for use
( svgdoc must be name for SVGDocument )