/* Начало конфигурации */
$thumb_directory = 'img/thumbs';
$orig_directory = 'img/original';
$stage_width=600;
$stage_height=400;
/* Конец конфигурации */
$allowed_types=array('jpg','jpeg','gif','png'); $ext='';
$title='';
$i=0;
/* Открываем папку с миниатюрами и пролистываем каждую из них */
$dir_handle = @opendir($thumb_directory) or
die("There is an error with your image directory!");
$i=1;
while ($file = readdir($dir_handle)) {
/* Пропускаем системные файлы: */
if($file=='.' || $file == '..') continue;
/* Используем название файла (без расширения) в качестве названия изображения:
*/
/* Если расширение разрешено: */
{
/* Генерируем случайные значения для позиционирования и поворота фото: */
$left=rand(0,$stage_width);
if($top>$stage_height-130 && $left > $stage_width-230)
{
/* Prevent the images from hiding the drop box */
$top-=120+130;
$left-=230;
}
/* Выдаем каждое фото: */
echo '
<div id="pic-'.($i++).'" class="pic" style="top:'.$top.'px;left:'.$left.'px;background:url('.$thumb_directory.'/'.$file.')
no-repeat 50% 50%; -moz-transform:rotate('.$rot.'deg); -webkit-transform:rotate('.$rot.'deg);">
<a class="fancybox" rel="fncbx" href="'.$orig_directory.'/'.$file.'"
target="_blank">'.$title.'</a>
</div>';
}
}
/* Закрываем папку */