如何从图库目录制作图像随机化器?

发布于 2024-08-25 17:44:45 字数 195 浏览 3 评论 0原文

我想制作一个图像随机化器/滑块,它随机显示指定图库中的图像,并具有用于查看下一个/上一个图像的控件。我已经看到这样做的情况,图像必须编码到数组中,但我希望能够将图像放入 /img/gallery 目录中,并让随机发生器/滑块从该目录中提取随机图像。

任何人都可以提供一些关于如何执行此操作的指导(可能使用 jQuery),或者向我推荐一个执行类似操作的教程吗?

I would like to make a image randomizer/slider that randomly displays an image from a designated gallery and has controls to view the next/previous image. I have seen this done where images must be coded into arrays, but I would like to be able to just drop images into a /img/gallery directory and have the randomizer/slider pull random images from that directory.

Could anyone offer some guidance on how to do this, possibly using jQuery, or refer me to a tutorial that does something like this?

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

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

发布评论

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

评论(2

萌面超妹 2024-09-01 17:44:45

您需要使用 PHP、ColdFusion 或 ASP.NET 等服务器端技术将目录图像读取到数组或列表中...

伪代码:

Get Directory Images > Put them in an array > select random values from array

You would need to use a server-side technology like PHP, ColdFusion, or ASP.NET to read the directory images into an array or list...

pseudocode:

Get Directory Images > Put them in an array > select random values from array
晨曦÷微暖 2024-09-01 17:44:45

不是 jQuery 程序员,但似乎您可以执行以下操作:

  1. 确定目录中图像的数量 (N)
  2. 选择 1 到 N 之间的随机数
  3. 加载该图像以及下一个/上一个内容所需的任何其他内容

Not a jQuery programmer but seems like you could do this:

  1. Determine the number of images in your directory (N)
  2. Choose a random number between 1 and N
  3. Load up that image and whatever else you need for the next/previous stuff
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文