带有动态 URL 的 JQuery 幻灯片,用于直接链接到幻灯片中的图像

发布于 2024-10-02 06:31:38 字数 150 浏览 4 评论 0原文

有谁知道是否有一个 jquery 幻灯片脚本可以根据您在幻灯片中查看的图像将参数附加到 URL?客户担心幻灯片中显示的精选图像页面不允许用户直接链接到特定图像,或直接共享幻灯片中该图像的 URL。我还没有看到任何动态执行此操作的脚本,因为它们只是更改页面上隐藏 div 的可见性。谢谢!

Does anyone know if there is a jquery slideshow script out there that appends parameters to the URL based on what image you are looking at in the slideshow? A client is worried that a page of featured images that is displayed in a slideshow won't allow users to direct link to a certain image, or share a URL directly to that image in the slideshow. I've not seen any scripts that do this dynamically, since they just change the visibility of hidden divs on the page. Thanks!

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

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

发布评论

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

评论(1

黑凤梨 2024-10-09 06:31:38

构建 jQuery 插件可能比您想象的要简单。找到您最喜欢的幻灯片插件...一个允许您跳转到特定幻灯片的插件(我在本示例中使用 goTo 参数来执行此操作),然后修改 onChange 中 url 的哈希部分:

jQuery.fn.urlSlideshow = function ()
{
  $(this).favouriteSlideShowPlugin({
    onChange: function () {/* modify hash part of url to name of slide here */},
    goTo: /* get hash part of url here */
  });
};

Building jQuery plugins is probably simpler than you think. Find your favourite slideshow plugin... one that allows you to jump to a particular slide (I'm using the goTo parameter in this example to do that), then modify the hash part of the url in the onChange:

jQuery.fn.urlSlideshow = function ()
{
  $(this).favouriteSlideShowPlugin({
    onChange: function () {/* modify hash part of url to name of slide here */},
    goTo: /* get hash part of url here */
  });
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文