<?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 width="100%" height="100%"
     xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink">

<defs>
  <path id="pathfortext"
        d="M 100 200 
             C 200 100 300 0 400 100
             C 500 200 600 300 700 300" 
        fill="none" stroke="#006666"/>
</defs>

<use xlink:href="#pathfortext" fill="none" stroke="none"/>
<text font-family="Comic Sans MS, sans-serif" font-size="18" fill="#666699" >
  <textPath xlink:href="#pathfortext" startOffset="200">
      Nun schauen wir mal, ob  
      <tspan fill="#669966" dy="-15">sich</tspan> 
      <tspan fill="#666699" dy="10">hier was verschiebt ...</tspan>
    <animate attributeName="startOffset" begin="1s"
      from="200" to="10" dur="6s" fill="freeze"/>
  </textPath>
</text>

</svg>
