0

我是 Web 开发的新手,我需要创建一个用于投资组合目的的网站,我需要在其中显示缩略图和我的项目的一些描述,并且所有内容都应该动态显示。我有 PHP、wordpress、javascript、jquery、python 和 HTML/CSS 的基本知识,所以我这样做是为了学习。

我想让你们告诉我我该怎么做,只要指导我剩下的我会处理的。

一些类似的例子是

http://themes.themepunch.com/?theme=megafoliopro_jq

http://codecanyon.net/item/dzs-scroller-gallery-cool-jquery-media-gallery/full_screen_preview/457913?ref=ibrandstudio

我是这个论坛的新手,希望有人能回答我的问题

非常感谢小伙伴们。

4

2 回答 2

0

下载CMS Made Simple并获取相册图库模块。这是完成工作的众多方法之一。

于 2013-05-09T13:17:28.430 回答
0

您可以glob()使用 PHP 生成一个目录来生成缩略图。我在我的摄影网站上使用这种方法:

<?php
$counter = 0; // Set counter to 0
foreach (glob("images/photo-strip/thumb/*.jpg") as $pathToThumb) { // Grab files from the thumbnail path and save them to variable
    $th_filename = basename($pathToThumb); // Strip the thumbnail filename from the path
    $filename = str_replace('th_', '', $th_filename); // Strip th_ from the filename and save it to a different variable
    $pathToFull = 'images/photo-strip/' . $filename; // Rebuild the path to the full-size image
    echo ("<section class=\"photo-box\"><a href=\"$pathToFull\"><img src=\"$pathToThumb\" /></a></section>"); // Echo the photobox
    $counter++; // Increment counter by 1 until no file exists
}
?>

您可以扩展此代码以生成您的“标题”,甚至可以为标签title=""内的属性设置标题样式<img>。如何将这些标题与文件匹配取决于您。

于 2013-05-09T13:32:46.173 回答