SVG – Learning by Coding

[ audio.svg --> Grafik anzeigen ]

 1: <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 2: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
 3:   "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
 4:   <!ATTLIST svg xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink">
 5:   <!-- experimentelle DTD-Erweiterung by TM 2004 -->
 6:   <!ATTLIST svg xmlns:a CDATA #FIXED "http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/">
 7:   <!ENTITY svgExt "|a:audio">
 8:   <!ELEMENT a:audio EMPTY>
 9:   <!ATTLIST a:audio
10:     begin CDATA #IMPLIED end CDATA #IMPLIED pan CDATA #IMPLIED volume CDATA #IMPLIED
11:     repeatCount CDATA #IMPLIED xlink:href CDATA #REQUIRED>
12: ]>
13: 
14: <!-- SVG Learning by Coding http://www.datenverdrahten.de/svglbc/ -->
15: <!--    AuthorDrThomas Meinike 12/02 thomas@handmadecode.de     -->
16: 
17: <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
18:      xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/">
19: 
20:   <title>SVG Learning by Coding</title>
21:   <desc>SVG-Spezifikation in Beispielen</desc>
22:   <text x="20" y="30" style="fill: #000; font-size: 24px">Element a:audio (ASV)</text>
23: 
24:   <a:audio xlink:href="audvid/FRESSEHA.MP3" volume="1" pan="0" begin="10s" repeatCount="1" />
25:   <!-- Quellehttp://www.nuhr.de/data/FRESSEHA.MP3 -->
26: 
27:   <a xlink:href="http://www.nuhr.de/" target="_top">
28:     <text x="30" y="60" style="fill: #00C; font-size: 14px">
29:       Es sollte nach 10 Sekunden ein Spruch von Dieter Nuhr zu hören sein ... ;-)
30:     </text>
31:   </a>
32: 
33: </svg>

[zum Anfang]