Galleriffic——从页面外部链接到图库中的特定图像

发布于 2024-12-12 06:24:21 字数 603 浏览 0 评论 0原文

如果标题还不够清楚,我会在这里详细说明。

我创建了多个画廊,每个画廊都位于不同的 html 页面上,每个画廊包含 5-25 张图像。我想要的是实现一个下拉菜单,用户可以在其中跳转到任何图库中的任何特定图像。然而这似乎不起作用。我尝试创建一个链接到由 galleriffic 生成的 # 的表单,但似乎无法弄清楚如何使图像被调用。每当我尝试时,它都会加载图库中的第一张图像。

我不太精通 jQuery 或 PHP,而且我知道我需要一些技巧才能使用这些语言。

下面是索引页面的示例,以及我尝试调用的另一个页面。

https://s3-us-west-1.amazonaws.com /integra2010/optics/index.html https://s3-us-west-1.amazonaws.com/integra2010/optics/butterscotch.html

下拉菜单当前仅包含 3 个链接,我想在奶油糖果页面上加载图像 3,4,5。

任何帮助将不胜感激。

谢谢你!

If the title isn't clear enough I'll go into some detail here.

I've created multiple galleriffic galleries each on different html pages, each gallery consisting of 5-25 images. What I would like is to implement a drop down menu where a user can jump to any specific image in any gallery. However this doesn't seem to work. I tried creating a form which links to the # generated by galleriffic, but can't seem to figure out how to make the image get called. Whenever I try it simply loads the first image in the gallery.

I'm not overly proficient with jQuery or PHP, and I know I need some trickery with these languages to work.

Below are examples of the index page, and another page I'm trying to call.

https://s3-us-west-1.amazonaws.com/integra2010/optics/index.html
https://s3-us-west-1.amazonaws.com/integra2010/optics/butterscotch.html

The drop down menu currently contains just 3 links, which I want to load image 3,4,5 on the butterscotch page.

Any help would be greatly appreciated.

Thank you!

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

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

发布评论

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

评论(1

莫言歌 2024-12-19 06:24:21

butterscotch.html 重命名为 butterscotch.php 并添加到 .galleriffic() 之后的脚本中

<?php
$id = strrchr($_SERVER['REQUEST_URI'], '#');
if ($id) echo "$('#thumbs a[href=\"{$id}\"]').click();";
?>

rename butterscotch.html to butterscotch.php and add to script after .galleriffic()

<?php
$id = strrchr($_SERVER['REQUEST_URI'], '#');
if ($id) echo "$('#thumbs a[href=\"{$id}\"]').click();";
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文