AnythingSlider - 从不同页面链接到滑块中的特定图像
我正在为我的画廊使用 AnythingSlider jQuery 插件。我尝试做的是 - 创建一个链接并将其“链接”到另一个页面滑块上的特定幻灯片。
例如,我在 gallery.php 页面上的链接是:
<a href="photo.php?imageID=12345"></a>
我的滑块本身位于 photo.php 页面上,并且它确实在其中一张幻灯片中包含该图像。我需要在加载时首先在 photo.php 页面的滑块中显示该特定图像。
有人知道如何实现这一目标吗?
谢谢。
I'm using AnythingSlider jQuery plugin for my gallery. What I try to do is - create a link and "link" it to a specific slide on another page's slider.
For example, the link I have on the page gallery.php is:
<a href="photo.php?imageID=12345"></a>
And my slider itself is on the page photo.php and it does contain that image in one of its slides. I need to show that specific image first in the slider on the page photo.php when it loads.
Does anybody have any clue on how can this be achieved?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何滑块都内置此功能。当您单击导航选项卡之一时,它会使用当前幻灯片和幻灯片更新 URL 哈希。
以下是 AnythingSlider 演示页面的链接,请注意,当您单击选项卡以更改 URL 哈希更改的幻灯片时: http://css-tricks.com/examples/AnythingSlider/
要链接到页面上第一张幻灯片上的第四张幻灯片,您可以将其添加到 URL:
此选项默认情况下处于启用状态与
hashTags
选项设置为true
。Anything slider has this functionality built-in. It updates the URL hash with the current slideshow and slide when you click one of the navigation tabs.
Here is a link to an AnythingSlider demo page, notice when you click on a tab to change the slide that the URL hash changes: http://css-tricks.com/examples/AnythingSlider/
To link to the fourth slide on the first slideshow on the page you would add this to the URL:
This option is turned-on by default with the
hashTags
option set totrue
.