PSD-Tutorials.de
Forum für Design, Fotografie & Bildbearbeitung
Tutkit
Agentur
Hilfe
Kontakt
Start
Forum
Aktuelles
Besonderer Inhalt
Foren durchsuchen
Tutorials
News
Anmelden
Kostenlos registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Menü
Anmelden
Kostenlos registrieren
App installieren
Installieren
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Antworten auf deine Fragen:
Neues Thema erstellen
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
Webdesign: HTML/CSS, Responsive Design, Sass...
dynamische Textfelder/für jedes Bild ein Text
Beitrag
<blockquote data-quote="4uwak" data-source="post: 1243064" data-attributes="member: 248483"><p><strong>AW: dynamische Textfelder/für jedes Bild ein Text</strong></p><p></p><p>so hier der Code für XML-Auslesung</p><p>die XML-datei muss dann so aussehen wie oben beschrieben</p><p>[CODE]</p><p>var bilderXML:XML = new XML();// Neues XML-Objekt anlegen </p><p>bilderXML.ignoreWhite = true;// Leerzeichen in XML ignorieren</p><p>bilderXML.onLoad = onload;//onLoad-Handler zuweisen</p><p>bilderXML.load("deineBilder.xml");</p><p></p><p></p><p>function onload(erfolgreich) {</p><p> if (erfolgreich) {</p><p></p><p> var knotenliste:Array = new Array();</p><p> //der jeweilige erste Eintrag in den Knoten</p><p> knotenliste = this.firstChild.childNodes;</p><p> //Array erzeugen</p><p> var link:Array = new Array();</p><p> var beschreibung:Array = new Array();</p><p> //Anzahl der Bilder ermitteln über Länge der Knotenliste</p><p> var len:Number = knotenliste.length;</p><p> _root.len = len;</p><p> _root.[COLOR=#000000][COLOR=#000000]bilderanzahl[/COLOR]=[/COLOR]_root.len;</p><p></p><p> //alle Einträge durchwandern und in die Attribute in die Arrays setzen</p><p> for (var i:Number = 0; i<_root.len; i++) {</p><p> _root.link[i] = knotenliste[i].attributes.url;</p><p> _root.beschreibung[i] = knotenliste[i].attributes.untertitel;</p><p> }</p><p> //jetzt erst die Bilder laden:</p><p> starteDeineFunction();</p><p></p><p> } else {</p><p> trace("Fehler beim Laden");</p><p> }</p><p>}</p><p></p><p>function starteDeineFunction(){</p><p>[COLOR=#000000][COLOR=#000000]btn_re.on[/COLOR][COLOR=#000000]Release[/COLOR][COLOR=#0000ff][COLOR=#000000]=function()[/COLOR] { </p><p> if ([/COLOR][COLOR=#000000]a[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#000000]_parent[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bilderanzahl[/COLOR][COLOR=#0000ff]) { </p><p> [/COLOR][COLOR=#000000]a [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]a[/COLOR][COLOR=#0000ff]+[/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; </p><p> } else { </p><p> [/COLOR][COLOR=#000000]a [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; </p><p> } </p><p> [/COLOR][COLOR=#000000]t [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]+[/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; </p><p> if ([/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]) { </p><p> [/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]false[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]movie_2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]loadMovie[/COLOR][COLOR=#0000ff]([/COLOR][/COLOR]_root.link[a][COLOR=#000000][COLOR=#008080][/COLOR][COLOR=#0000ff], [/COLOR][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff]); </p><p> dein_txt[/COLOR][/COLOR].text=_root.beschreibung[a];</p><p> [COLOR=#000000][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]swapDepths[/COLOR][COLOR=#0000ff]([/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]); </p><p> </p><p> [/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame [/COLOR][COLOR=#0000ff]= function() { </p><p> if ([/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff]) { </p><p> [/COLOR][COLOR=#000000]delete this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_x [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]614[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_y [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]550[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; </p><p> } </p><p>}; </p><p> } else { </p><p> [/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]movie_2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]false[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]loadMovie[/COLOR][COLOR=#0000ff]([/COLOR][/COLOR]_root.link[a][COLOR=#000000][COLOR=#008080][/COLOR][COLOR=#0000ff], [/COLOR][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff]); </p><p> [/COLOR][/COLOR][COLOR=#000000][COLOR=#0000ff]dein_txt[/COLOR][/COLOR].text=_root.beschreibung[a];[COLOR=#000000][COLOR=#000000]</p><p> _root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]swapDepths[/COLOR][COLOR=#0000ff]([/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]); </p><p> </p><p> [/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame [/COLOR][COLOR=#0000ff]= function() { </p><p> if ([/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff]) { </p><p> [/COLOR][COLOR=#000000]delete this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_x [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]614[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; </p><p> [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_y [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]550[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; </p><p> } </p><p>}; </p><p> } </p><p>}[/COLOR][/COLOR]</p><p></p><p>}</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="4uwak, post: 1243064, member: 248483"] [b]AW: dynamische Textfelder/für jedes Bild ein Text[/b] so hier der Code für XML-Auslesung die XML-datei muss dann so aussehen wie oben beschrieben [CODE] var bilderXML:XML = new XML();// Neues XML-Objekt anlegen bilderXML.ignoreWhite = true;// Leerzeichen in XML ignorieren bilderXML.onLoad = onload;//onLoad-Handler zuweisen bilderXML.load("deineBilder.xml"); function onload(erfolgreich) { if (erfolgreich) { var knotenliste:Array = new Array(); //der jeweilige erste Eintrag in den Knoten knotenliste = this.firstChild.childNodes; //Array erzeugen var link:Array = new Array(); var beschreibung:Array = new Array(); //Anzahl der Bilder ermitteln über Länge der Knotenliste var len:Number = knotenliste.length; _root.len = len; _root.[COLOR=#000000][COLOR=#000000]bilderanzahl[/COLOR]=[/COLOR]_root.len; //alle Einträge durchwandern und in die Attribute in die Arrays setzen for (var i:Number = 0; i<_root.len; i++) { _root.link[i] = knotenliste[i].attributes.url; _root.beschreibung[i] = knotenliste[i].attributes.untertitel; } //jetzt erst die Bilder laden: starteDeineFunction(); } else { trace("Fehler beim Laden"); } } function starteDeineFunction(){ [COLOR=#000000][COLOR=#000000]btn_re.on[/COLOR][COLOR=#000000]Release[/COLOR][COLOR=#0000ff][COLOR=#000000]=function()[/COLOR] { if ([/COLOR][COLOR=#000000]a[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#000000]_parent[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bilderanzahl[/COLOR][COLOR=#0000ff]) { [/COLOR][COLOR=#000000]a [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]a[/COLOR][COLOR=#0000ff]+[/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; } else { [/COLOR][COLOR=#000000]a [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; } [/COLOR][COLOR=#000000]t [/COLOR][COLOR=#0000ff]= [/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]+[/COLOR][COLOR=#000000]1[/COLOR][COLOR=#0000ff]; if ([/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]) { [/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]false[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]movie_2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]loadMovie[/COLOR][COLOR=#0000ff]([/COLOR][/COLOR]_root.link[a][COLOR=#000000][COLOR=#008080][/COLOR][COLOR=#0000ff], [/COLOR][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff]); dein_txt[/COLOR][/COLOR].text=_root.beschreibung[a]; [COLOR=#000000][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]swapDepths[/COLOR][COLOR=#0000ff]([/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]); [/COLOR][COLOR=#000000]bild1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame [/COLOR][COLOR=#0000ff]= function() { if ([/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff]) { [/COLOR][COLOR=#000000]delete this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_x [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]614[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_y [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]550[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; } }; } else { [/COLOR][COLOR=#000000]movie_1[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]true[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]movie_2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_visible[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]false[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]loadMovie[/COLOR][COLOR=#0000ff]([/COLOR][/COLOR]_root.link[a][COLOR=#000000][COLOR=#008080][/COLOR][COLOR=#0000ff], [/COLOR][COLOR=#000000]_root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff]); [/COLOR][/COLOR][COLOR=#000000][COLOR=#0000ff]dein_txt[/COLOR][/COLOR].text=_root.beschreibung[a];[COLOR=#000000][COLOR=#000000] _root[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]swapDepths[/COLOR][COLOR=#0000ff]([/COLOR][COLOR=#000000]t[/COLOR][COLOR=#0000ff]); [/COLOR][COLOR=#000000]bild2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame [/COLOR][COLOR=#0000ff]= function() { if ([/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff]) { [/COLOR][COLOR=#000000]delete this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]onEnterFrame[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_x [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]614[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]width[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_width[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; [/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_y [/COLOR][COLOR=#0000ff]= ([/COLOR][COLOR=#000000]550[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]+([/COLOR][COLOR=#000000]Stage[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]height[/COLOR][COLOR=#0000ff]-[/COLOR][COLOR=#000000]this[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]bild_innen2[/COLOR][COLOR=#0000ff].[/COLOR][COLOR=#000000]_height[/COLOR][COLOR=#0000ff])/[/COLOR][COLOR=#000000]2[/COLOR][COLOR=#0000ff]; } }; } }[/COLOR][/COLOR] } [/CODE] [/QUOTE]
Bilder bitte
hier hochladen
und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Zitate einfügen…
Authentifizierung
Der grüne Frosch hüpft über die Hügel an den Bäumen vorbei in die Höhle. Bitte nenne das zweite Wort!
Antworten
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
Webdesign: HTML/CSS, Responsive Design, Sass...
dynamische Textfelder/für jedes Bild ein Text
Oben