Javascript 幻灯片库,能够添加下载选项、通过电子邮件发送图像

发布于 2024-12-28 20:24:02 字数 478 浏览 1 评论 0原文

我正在开发一种数字资产管理产品,用户可以上传图像(以及其他类型)并执行一些操作,例如传输、下载、转换、共享等。我们正在努力为一组选定的图像添加“嵌入”选项,其中嵌入将以幻灯片的形式进行。我正在寻找一个 javascript/jquery 库,它将帮助我创建具有以下选项的幻灯片:

  1. 当幻灯片暂停时,应该有某种方法来识别当前图像。
  2. 自定义高度、宽度。
  3. 能够容纳不同尺寸的图像。
  4. 能够为图像添加一些标题。
  5. 可定制的导航控件。
  6. 最好是免费的。

对于#1,我们想要做的是用户应该能够暂停幻灯片放映,然后选择下载/传输图像。显然我需要知道哪张图片是当前的。

我见过很多资源说“25 个最好的 jquery 幻灯片库”等,但那里的选择太多了。我正在一一检查,但到目前为止我还没有找到符合我要求的;上面的#1 是最重要的。

如果有人遇到过类似的情况,我们非常感谢您的反馈。谢谢。

I am working on a digital asset management product where users can upload images (among other types) and do some operations like transmit, download, transform, share etc. We are working to add an "embed" option for a set of selected images where the embed will be in a form of slideshow. I am looking for a javascript/jquery library that will help me create a slideshow with following options:

  1. When slideshow is paused, there should be some way to identify current image.
  2. Custom height, width.
  3. Ability to accommodate images of different dimensions.
  4. Ability to add some caption with the images.
  5. Customizable navigation controls.
  6. Preferably free.

With #1, what we want to do is user should be able to pause the slideshow and then select to download/transmit the image. Obviously I need to know which image is the current one.

I have seen many resources saying "25 best jquery slideshow libraries" etc. but there are just too many options out there. I am going through those one by one but so far I haven't found one which will match my requirements; #1 above being the most important.

If anyone has come across similar situation, your feedback is greatly appreciated. Thanks.

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

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

发布评论

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

评论(1

叹倦 2025-01-04 20:24:02

这是使用名为 Galleria 的库完成的。它的API相当丰富,提供了GetData(返回幻灯片中当前图像的详细信息)、GetIndex(返回当前图像的索引)等方法。输入数据可以指定为 HTML 或 JSON,这是一个很大的优点,因为在 JSON 对象中我们可以填充客户端可能需要的额外详细信息。 GetData 返回 JSON 对象的所有内容。现在,一旦我识别出当前图像,就可以轻松链接到我想要的其他选项。

http://galleria.io/docs/1.2/api/methods/

This was done using a library called Galleria. Its API is quite rich and provides methods like GetData (returns details of current image in slideshow), GetIndex (returns index of current image). The input data can be specified as HTML or JSON which is a big plus since in a JSON object we can fill extra details we might need on client side. Everything that is a part of JSON object is returned by GetData. Now once I identify current image, it's easy to link to other options that I wanted.

http://galleria.io/docs/1.2/api/methods/

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