Die ist aber in nem anderen thread , und da kann man nicht aus lust und laune posten![]()
doch, kann man in dem anderen auch machen
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Die ist aber in nem anderen thread , und da kann man nicht aus lust und laune posten![]()
naja hab ihn mir noch nicht richtig angeschaut ^^ aber dort geht es ja nach der reihe?
*jaul*
Das was vorn im Threand steht...
^^
-.-
Falls noch jemand die Codes (als GIFs - aber die Stelle, um das zu ändern, sollte schnell gefunden sein *g*) sammelt und PHP zur Verfügung hat, dem kommt vielleicht folgendes Skript zur Hilfe. Dann hat das Ganze ein bisschen was vom Paninibildersammeln.
PHP:<html> <head> <title>klammcodes-sammlung</title> <style type="text/css"> html, body { margin: 0px; text-align: center; } #header { border-bottom: 1px dashed black; margin-bottom: 5px; text-align: center; background-color: #CCC; } .number { width: 90px; height: 55px; border: 1px solid black; margin: 1px; background-repeat: no-repeat; float: left; } .missing { text-align: center; background-color: #FCC; color: #FAA; font-size: 2.9em; } .num { font-weight: bold; } </style> </head> <body> <?php $output = ''; $end = 999; $total = $missing = $idx = 0; while ($idx++<$end) { $number = sprintf('%03d', $idx); if (strpos($number, '0')!==false) continue; if (file_exists($number.'.gif')) { $output .= '<div class="number" style="background-image: url('.$number.'.gif)"></div>'; } else { $output .= '<div class="number missing">'.$number.'</div>'; $missing++; } $total++; } ?> <div id="header"> Total: <span class="num"><?=$total?></span> images | Missing: <span class="num"><?=$missing?></span> images </div> <div id="numbers"> <?=$output?> <br style="clear: left;"/> </div> </body> </html>
Die einfachste Art und Weise, das zum Laufen zu bringen, wäre:
- Ein neues Verzeichnis erstellen, bspw: klammcodes.
- In diesem Verzeichnis das Skript als index.php speichern.
- Nun immer die gespeicherten Codes als xxx.gif (bspw 482.gif) in dem selben Verzeichnis speichern.