CoNt0r: Dynamische HTML Seite entwerfen --> Geht das überhaupt?

Beitrag lesen

Gibt es denn ein Tool, das aus einer Zeichnung automatisch den SVG-Code erzeugt? Oder muss man wirklich alles selbst definieren.

Ich habe mal kurz angefangen und das würde dann so in etwa aussehen:

<line x1="200" y1="0" x2="200" y2="80" style="stroke:rgb(255,0,0);stroke-width:5" />
<line x1="200" y1="140" x2="200" y2="160" style="stroke:rgb(255,0,0);stroke-width:5" />
<line x1="170" y1="80" x2="200" y2="140" style="stroke:rgb(255,0,0);stroke-width:5" />
<circle cx="200" cy="170" r="10" style="fill:none;fill-opacity:0;stroke:black;stroke:yellow;stroke-width:3;opacity:1" />
<circle cx="190" cy="180" r="10" style="fill:none;fill-opacity:0;stroke:black;stroke:yellow;stroke-width:3;opacity:1" />
<circle cx="210" cy="180" r="10" style="fill:none;fill-opacity:0;stroke:black;stroke:yellow;stroke-width:3;opacity:1" />
<line x1="0" y1="0" x2="500" y2="0" style="stroke:rgb(255,0,0);stroke-width:5" />
							<r

geht das auch noch irgendwie einfacher ?

Die Dynamisierung muss ich dann über ein Skript(JS) vornehmen?