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
PHP, Javascript, jQuery, Ajax, nodeJS, MySQL...
Thums aus Bildern erstellen und dann per jquery auslesen
Beitrag
<blockquote data-quote="Konzertjunkie" data-source="post: 1596155" data-attributes="member: 261332"><p>Hallo liebes PSD-Tutorials Forum!</p><p>Ich habe mal ein paar Verständnis fragen bzw. ich brauche grade Hilfe zu Realisierung für ein paar Sachen. Habe ich selber alles schon gegooglet und trotzdem nichts gefunden, vielleicht mit falschen Suchbegriffen aber da bin ich offen <img src="/styles/default/xenforo/smilies/zwinker.gif" class="smilie" loading="lazy" alt=";)" title="Wink ;)" data-shortname=";)" />.</p><p>Ich habe eine Seite, wo Mensch ein Bild hoch laden kann und dieses wird dann in einem Ordner auf dem FTP Server geladen. So weit nichts besonders.</p><p>Jetzt sollen von diesen Bildern Thumbnails erstellt werden, die auf einer Seite angezeigt werden sollen. Diese sollen dann per jquery Bildergalerie aufgerufen werden.</p><p>Ich scheitere dadran das nur die Thumnails angezeigt werden und nicht per jquery Bildergalerie angesprochen werden. </p><p>Für die Anzeige der Bilder nutze ich Pixlie,jquery Bildergalerie habe ich schon eingebunden, funktioniert aber leider nicht -.-. Findet ihr den Fehler? </p><p></p><p>HTML Code von der bilder.php</p><p>[CODE]</p><p></p><p><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"</p><p> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"></p><p><html xmlns="http://www.w3.org/1999/xhtml"></p><p></p><p><head></p><p><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /></p><p><meta http-equiv="content-language" content="de" /></p><p><meta name="robots" content="index" /></p><p><meta http-equiv="Content-Style-Type" content="text/css" /></p><p><meta name="revisit-after" content="5days" /></p><p><meta name="DC.title" content="Familie Bechmann" /></p><p><meta name="DC.creator" content="Milan Design" /></p><p><meta name="DC.subject" content="Familie Bechmann, Familienhomepage, Familie, Familie Kassel" /></p><p><meta name="DC.description" content="Homepage der Familie Bechmann" /></p><p><meta name="DC.publisher" content="Milan Design" /></p><p><meta name="DC.contributor" content="itproductions-lessmann" /></p><p><meta name="DC.date" content="Erstelldatum im Format: 2010-03-05T08:49:37+02:00" scheme="DCTERMS.W3CDTF" /></p><p><meta name="DC.typ"="Service"/></p><p><meta name="DC.rights"="familie-bechmann.de"/></p><p><meta name="DC.language" content="de" scheme="DCTERMS.RFC3066" /></p><p><script type="text/javascript" src="js/jquery.js"> </script></p><p><script type="text/javascript" src="js/jquery.lightbox-0.5.min.js"> </script></p><p><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /></p><p><link rel="stylesheet" type="text/css" href="formate.css" /></p><p><link rel="stylesheet" type="text/css" href="/jsjquery.lightbox-0.5.css"></p><p><title>Familie Bechmann</title></p><p></p><p><script type="text/javascript"> </p><p> /* <![CDATA[ */</p><p> $(document).ready(function(){</p><p> $('#inhalt a').lightBox({</p><p> fixedNavigation:true</p><p> }); </p><p> });</p><p> /* ]]> */</p><p> </script></p><p></p><p></head></p><p></p><p><body></p><p><div id="web"></p><p><a href="kontakt.php" title="Kontakt">Kontakt</a> | <a href="impressum.php" title="Impressum">Impressum</a> | <a href="sitemap.php" title="Sitemap">Sitemap</a></p><p><div id="oben"></p><p><div id="logo"><a href="index.php"> <img src="logos/header.png" width="900" height="120" alt="logo"/></a></p><p></div><!-- logo //--></p><p></p><p><div id="hauptnavi"></p><p> <ul></p><p> <li><a class="hauptnavi" href="#" title="Home">Home</a></li></p><p> <li><a class="hauptnavi" href="stammbaum.php" title="Stammbaum">Stammbaum</a></li></p><p> <li><a class="hauptnavi" href="anmeldung.php" title="Intern">Intern</a></li></p><p> </ul></p><p></div><!-- hauptnavi //--></p><p></div><!-- oben //--></p><p></p><p><div id="post_it"></p><p><a href="bilder.php"><img src="logos/bilder.png" width="133" height="100" alt="Bilder"/></a></p><p><a href="upload.php"><img src="logos/hochladen.png" width="133" height="100" alt="Hochladen"/></a></p><p></div><!-- post_it //--></p><p><div id="inhalt"></p><p></p><p><h1>Bilder</h1><br /></p><p> </p><p><?php</p><p> $response_type = 'php'; //Ausgabe auf php umstellen</p><p> include('pixlie.php'); //Einbinden von Pixlie</p><p> ?></p><p></p><p> <?php </p><p> /*Baue Link zu Bildtyp "s" (small): Pfad zu Pixlie / Pfad zum Bild / _s + Dateiendung*/</p><p> foreach ($pixlie_table_file as $picture){ ?></p><p> <img</p><p> src="<?php echo $pixlie_table_env['path_pixlie'].$picture['link_get']; ?>_s<?php echo $picture['extension']; ?>"</p><p> alt="<?php echo $picture['name']; ?>" /></p><p> <?php } ?></p><p></p><p></div><!-- inhalt //--></p><p></div><!-- web //--></p><p></p><p></p><p></body></p><p></html>[/CODE]</p><p>Css Datei von der Seite</p><p>[CODE]body { background-color: #888888; color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;}</p><p>hr { width:100%; color:#ebbf82; background-color:#000000; height:2px; }</p><p>img { border: 0; }</p><p></p><p></p><p>h1 { font-size: 20px; padding: 0; text-align: center; font-weight: bold; line-height: 20px; color: #000000;}</p><p></p><p>h2 { font-size: 12px; text-align: center; line-height: 18px; color: #000000;}</p><p></p><p> .kursiv { font-size: 13px; padding: 3px 0 0 0; text-align: left; font-weight: normal;</p><p> font-style: italic; line-height: 15pt; width: 380px; color: #000000;}</p><p></p><p> .fett { font-size: 13px; padding: 3px 0 0 0; text-align: center; font-weight: bold;</p><p> font-style: normal; line-height: 15pt; width: 380px; color: #000000;}</p><p></p><p>#web { </p><p> text-align: right;</p><p> margin: 0 auto;</p><p> margin-top: 0px;</p><p> width: 900px;</p><p> height: 10px;</p><p> padding: 0;</p><p> }</p><p> #web a:link { color: #0a0a0a; text-decoration: none; }</p><p> #web a:visited { color: #0a0a0a; text-decoration: none; }</p><p> #web a:hover { color: #5e5e5e; text-decoration: none; }</p><p> #web a:active { color: #4e4e4e; text-decoration: none; }</p><p></p><p>#oben { </p><p> margin: 0 auto; </p><p> width: 900px;</p><p> height: 141px; </p><p> color: #FFFFFF; </p><p> }</p><p></p><p></p><p>#logo { </p><p> margin: 0 auto; </p><p> width: 900px; </p><p> height: 120px;</p><p> margin-top: 5px;</p><p> border-top: 2px solid #000000;</p><p> border-bottom: 2px solid #000000;</p><p> color: #000000; </p><p> background-color: #FFFFFF; </p><p> padding: 0; </p><p> } </p><p></p><p>#post_it {</p><p> width: 200px;</p><p> height: 400px;</p><p> position: relative;</p><p> float: right;</p><p> margin: 0 auto;</p><p> right: 10px;</p><p> top: 200px;</p><p> color:#cc6633;</p><p> z-index: 4;</p><p></p><p>}</p><p></p><p></p><p>#hauptnavi { </p><p> position: relative;</p><p> height: 17px; </p><p> width: 896px; </p><p> margin: 0px 0px 10px 0px; </p><p> padding: 2px 2px 2px 2px;</p><p> background-color: #FFFFFF;</p><p> border-bottom: 2px solid #000000;</p><p> text-align: center; </p><p> white-space: nowrap;</p><p> }</p><p> </p><p> #hauptnavi ul { width: 900px; margin: auto; list-style-type: none; text-align: center; }</p><p> #hauptnavi li { width: 896p; padding: 2px 2px 2px 2px; margin-right: 7px; margin-left: 7px; text-align: center; line-height: 21px; font-size: 13px; font-weight: bold; display: inline-block; }</p><p> .aktiv { color: #000000; background: #FFFFFF; text-decoration: none; display: block; }</p><p> .hauptnavi { color: #000000; background: #FFFFFF; text-decoration: none; display: block; }</p><p> .hauptnavi:link { color: #000000; background: #FFFFFF; }</p><p> .hauptnavi:hover { color: #5e5e5e; background: #FFFFFF; text-decoration: underline }</p><p> .hauptnavi:active { color: #000000; background: #FFFFFF; text-decoration: underline }</p><p> .hauptnavi a:visited { color: #000000; background-color: #FFFFFF; text-decoration: underline }</p><p></p><p>#inhalt { </p><p> position: absolute;</p><p> height: 520px;</p><p> display: table-cell; </p><p> width: 880px;</p><p> top: 170px; </p><p> margin: 0 auto; </p><p> padding: 30px 10px 10px 10px ; </p><p> font-size: 10pt; </p><p> text-align: left; </p><p> line-height: 15pt;</p><p> background-color: #FFFFFF;</p><p> z-index: 2; </p><p> }</p><p> </p><p> #inhalt ul { list-style-type: disc; text-align: left; font-size: 13px;}</p><p> #inhalt table { border-collapse: collapse; }</p><p> #inhalt td { }</p><p> #inhalt li { text-align: left; font-size: 13px; }</p><p> #inhalt a:link { color: #0a0a0a; text-decoration: underline; }</p><p> #inhalt a:visited { color: #0a0a0a; text-decoration: none; }</p><p> #inhalt a:hover { color: #5e5e5e; text-decoration: underline; }</p><p> #inhalt a:active { color: #808080; text-decoration: none; }</p><p></p><p></p><p>.bildlinks { float: left; padding: 1px; margin: 10px 10px 10px 0; padding: 2px; }</p><p>.bildrechts { float: right; padding: 1px; margin: 10px 0 10px 10px; padding: 2px; }</p><p>[/CODE]</p><p>Ich hoffe ihr könnt mir helfen! </p><p>Danke schon mal!</p></blockquote><p></p>
[QUOTE="Konzertjunkie, post: 1596155, member: 261332"] Hallo liebes PSD-Tutorials Forum! Ich habe mal ein paar Verständnis fragen bzw. ich brauche grade Hilfe zu Realisierung für ein paar Sachen. Habe ich selber alles schon gegooglet und trotzdem nichts gefunden, vielleicht mit falschen Suchbegriffen aber da bin ich offen ;). Ich habe eine Seite, wo Mensch ein Bild hoch laden kann und dieses wird dann in einem Ordner auf dem FTP Server geladen. So weit nichts besonders. Jetzt sollen von diesen Bildern Thumbnails erstellt werden, die auf einer Seite angezeigt werden sollen. Diese sollen dann per jquery Bildergalerie aufgerufen werden. Ich scheitere dadran das nur die Thumnails angezeigt werden und nicht per jquery Bildergalerie angesprochen werden. Für die Anzeige der Bilder nutze ich Pixlie,jquery Bildergalerie habe ich schon eingebunden, funktioniert aber leider nicht -.-. Findet ihr den Fehler? HTML Code von der bilder.php [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="content-language" content="de" /> <meta name="robots" content="index" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="revisit-after" content="5days" /> <meta name="DC.title" content="Familie Bechmann" /> <meta name="DC.creator" content="Milan Design" /> <meta name="DC.subject" content="Familie Bechmann, Familienhomepage, Familie, Familie Kassel" /> <meta name="DC.description" content="Homepage der Familie Bechmann" /> <meta name="DC.publisher" content="Milan Design" /> <meta name="DC.contributor" content="itproductions-lessmann" /> <meta name="DC.date" content="Erstelldatum im Format: 2010-03-05T08:49:37+02:00" scheme="DCTERMS.W3CDTF" /> <meta name="DC.typ"="Service"/> <meta name="DC.rights"="familie-bechmann.de"/> <meta name="DC.language" content="de" scheme="DCTERMS.RFC3066" /> <script type="text/javascript" src="js/jquery.js"> </script> <script type="text/javascript" src="js/jquery.lightbox-0.5.min.js"> </script> <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> <link rel="stylesheet" type="text/css" href="formate.css" /> <link rel="stylesheet" type="text/css" href="/jsjquery.lightbox-0.5.css"> <title>Familie Bechmann</title> <script type="text/javascript"> /* <![CDATA[ */ $(document).ready(function(){ $('#inhalt a').lightBox({ fixedNavigation:true }); }); /* ]]> */ </script> </head> <body> <div id="web"> <a href="kontakt.php" title="Kontakt">Kontakt</a> | <a href="impressum.php" title="Impressum">Impressum</a> | <a href="sitemap.php" title="Sitemap">Sitemap</a> <div id="oben"> <div id="logo"><a href="index.php"> <img src="logos/header.png" width="900" height="120" alt="logo"/></a> </div><!-- logo //--> <div id="hauptnavi"> <ul> <li><a class="hauptnavi" href="#" title="Home">Home</a></li> <li><a class="hauptnavi" href="stammbaum.php" title="Stammbaum">Stammbaum</a></li> <li><a class="hauptnavi" href="anmeldung.php" title="Intern">Intern</a></li> </ul> </div><!-- hauptnavi //--> </div><!-- oben //--> <div id="post_it"> <a href="bilder.php"><img src="logos/bilder.png" width="133" height="100" alt="Bilder"/></a> <a href="upload.php"><img src="logos/hochladen.png" width="133" height="100" alt="Hochladen"/></a> </div><!-- post_it //--> <div id="inhalt"> <h1>Bilder</h1><br /> <?php $response_type = 'php'; //Ausgabe auf php umstellen include('pixlie.php'); //Einbinden von Pixlie ?> <?php /*Baue Link zu Bildtyp "s" (small): Pfad zu Pixlie / Pfad zum Bild / _s + Dateiendung*/ foreach ($pixlie_table_file as $picture){ ?> <img src="<?php echo $pixlie_table_env['path_pixlie'].$picture['link_get']; ?>_s<?php echo $picture['extension']; ?>" alt="<?php echo $picture['name']; ?>" /> <?php } ?> </div><!-- inhalt //--> </div><!-- web //--> </body> </html>[/CODE] Css Datei von der Seite [CODE]body { background-color: #888888; color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;} hr { width:100%; color:#ebbf82; background-color:#000000; height:2px; } img { border: 0; } h1 { font-size: 20px; padding: 0; text-align: center; font-weight: bold; line-height: 20px; color: #000000;} h2 { font-size: 12px; text-align: center; line-height: 18px; color: #000000;} .kursiv { font-size: 13px; padding: 3px 0 0 0; text-align: left; font-weight: normal; font-style: italic; line-height: 15pt; width: 380px; color: #000000;} .fett { font-size: 13px; padding: 3px 0 0 0; text-align: center; font-weight: bold; font-style: normal; line-height: 15pt; width: 380px; color: #000000;} #web { text-align: right; margin: 0 auto; margin-top: 0px; width: 900px; height: 10px; padding: 0; } #web a:link { color: #0a0a0a; text-decoration: none; } #web a:visited { color: #0a0a0a; text-decoration: none; } #web a:hover { color: #5e5e5e; text-decoration: none; } #web a:active { color: #4e4e4e; text-decoration: none; } #oben { margin: 0 auto; width: 900px; height: 141px; color: #FFFFFF; } #logo { margin: 0 auto; width: 900px; height: 120px; margin-top: 5px; border-top: 2px solid #000000; border-bottom: 2px solid #000000; color: #000000; background-color: #FFFFFF; padding: 0; } #post_it { width: 200px; height: 400px; position: relative; float: right; margin: 0 auto; right: 10px; top: 200px; color:#cc6633; z-index: 4; } #hauptnavi { position: relative; height: 17px; width: 896px; margin: 0px 0px 10px 0px; padding: 2px 2px 2px 2px; background-color: #FFFFFF; border-bottom: 2px solid #000000; text-align: center; white-space: nowrap; } #hauptnavi ul { width: 900px; margin: auto; list-style-type: none; text-align: center; } #hauptnavi li { width: 896p; padding: 2px 2px 2px 2px; margin-right: 7px; margin-left: 7px; text-align: center; line-height: 21px; font-size: 13px; font-weight: bold; display: inline-block; } .aktiv { color: #000000; background: #FFFFFF; text-decoration: none; display: block; } .hauptnavi { color: #000000; background: #FFFFFF; text-decoration: none; display: block; } .hauptnavi:link { color: #000000; background: #FFFFFF; } .hauptnavi:hover { color: #5e5e5e; background: #FFFFFF; text-decoration: underline } .hauptnavi:active { color: #000000; background: #FFFFFF; text-decoration: underline } .hauptnavi a:visited { color: #000000; background-color: #FFFFFF; text-decoration: underline } #inhalt { position: absolute; height: 520px; display: table-cell; width: 880px; top: 170px; margin: 0 auto; padding: 30px 10px 10px 10px ; font-size: 10pt; text-align: left; line-height: 15pt; background-color: #FFFFFF; z-index: 2; } #inhalt ul { list-style-type: disc; text-align: left; font-size: 13px;} #inhalt table { border-collapse: collapse; } #inhalt td { } #inhalt li { text-align: left; font-size: 13px; } #inhalt a:link { color: #0a0a0a; text-decoration: underline; } #inhalt a:visited { color: #0a0a0a; text-decoration: none; } #inhalt a:hover { color: #5e5e5e; text-decoration: underline; } #inhalt a:active { color: #808080; text-decoration: none; } .bildlinks { float: left; padding: 1px; margin: 10px 10px 10px 0; padding: 2px; } .bildrechts { float: right; padding: 1px; margin: 10px 0 10px 10px; padding: 2px; } [/CODE] Ich hoffe ihr könnt mir helfen! Danke schon mal! [/QUOTE]
Bilder bitte
hier hochladen
und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Zitate einfügen…
Authentifizierung
Wenn ▲ = 5, ▼ = 2 und ■ = 7, was ist ▲ × ▼ + ■?
Antworten
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
PHP, Javascript, jQuery, Ajax, nodeJS, MySQL...
Thums aus Bildern erstellen und dann per jquery auslesen
Oben