我想创建一个图像滑块,自动滑动文件夹中的所有相似图像

发布于 2024-10-30 21:52:53 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

左秋 2024-11-06 21:52:53

你需要的是这样的:
1.通过Java、PHP或其他服务器端语言读取图库文件夹中的文件。
2. 列出他们的姓名(如果您需要其他信息)。
3. 通过 javascript 或 jQuery 显示它们...

您可以使用 PHP 中的以下代码读取文件夹文件:

$dir = getcwd()."/ImageGalleryFolder/";

if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            if (($file != '.') && ($file != '..' ) && !is_dir($dir.$file)) {

                                // YOU HAVE FILENAME HERE ($file), USE IT AS YOU LIKE!
                                // note: the complete path of your file is $dir.$file
                        }
                }
        }
}

有许多免费的 javascript 和 jQuery 图像滑块 &网络中的轮播...其中一些甚至可以读取图像文件夹(但我不记得它们的名字)...

看看这些地方(你可以通过谷歌搜索找到更多)...

http://www.blogohblog.com/20-killer-image-sliders-carousels/

http://www.vivalogo.com/vl -resources/javascript-slideshows-sliders-carousels.htm

The thing you need is this:
1. read the files of your image gallery folder via Java, PHP or another Server-Side languages.
2. make a list of their names (and if you like other information).
3. show them via javascript OR jQuery...

you can read the folder files by using this code in PHP:

$dir = getcwd()."/ImageGalleryFolder/";

if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            if (($file != '.') && ($file != '..' ) && !is_dir($dir.$file)) {

                                // YOU HAVE FILENAME HERE ($file), USE IT AS YOU LIKE!
                                // note: the complete path of your file is $dir.$file
                        }
                }
        }
}

There are many free javascript and jQuery Image Sliders & Carousels in the net... Some of them even can read a folder of images (but I don't remember their names)...

Take a look at these places (and you can find more by googling)...

http://www.blogohblog.com/20-killer-image-sliders-carousels/

http://www.vivalogo.com/vl-resources/javascript-slideshows-sliders-carousels.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文