将 HREF URL 添加到位于活动滑块图像的 jQuery 循环滑块顶部的按钮

发布于 2024-11-18 02:11:22 字数 580 浏览 1 评论 0原文

我有一个滑块,我在滑块顶部添加了控件,即正常的“下一个”和“下一个”。以前 ::: 另外,我想添加一个按钮,单击它时将以全视图(灯箱)打开图像 ::: 我下面的代码确实填充了按钮的 href,但它似乎与当前图像不同步显示 ::: 我没有足够的 jQuery 知识来了解这个问题 ::: 我会感谢任何帮助 :::

$('.portfolio-slider').hover(function() { $('.portfolio-controls').fadeIn(); }, function() { $('.portfolio-controls').fadeOut(); });

$('.portfolio-slider .slides').cycle({
timeout: 2000, 
fx: 'fade',
prev : '.prev-slide', 
next : '.next-slide', 
pause: 1,
after: onAfter
});

function onAfter(currSlideElement) {
$('#full-size-button').attr('href', $('a', currSlideElement).attr('href'));
}

I have a slider that I've added controls on top of the slider, the normal next & previous ::: Additionally I want to add a button that when clicked on it will open the image in full view (lightbox) ::: My code below does populate the button's href but it seems to be out of sync with the current image being displayed ::: I don't have enough knowledge of jQuery to get to the bottom of this ::: I will Appreciate any assistance :::

$('.portfolio-slider').hover(function() { $('.portfolio-controls').fadeIn(); }, function() { $('.portfolio-controls').fadeOut(); });

$('.portfolio-slider .slides').cycle({
timeout: 2000, 
fx: 'fade',
prev : '.prev-slide', 
next : '.next-slide', 
pause: 1,
after: onAfter
});

function onAfter(currSlideElement) {
$('#full-size-button').attr('href', $('a', currSlideElement).attr('href'));
}

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

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

发布评论

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

评论(1

爱的那么颓废 2024-11-25 02:11:22

为什么不让打开图像大版本的按钮在单击时抓取当前图像,而不是使用在转换后运行的函数:

<a id="full-size-button">View Bigger Image</a>

$('#full-size-button').live('click', function() {
    $('#full-size-button').attr('href', $('.portfolio-slider img').is(':visible').attr('href'));
});

注意:可见图像的选择器可能需要根据您的 HTML 结构进行调整。

----编辑----

我刚刚在 JQuery Cycle 文档中注意到,您可能希望将当前代码与回调函数一起用于“before”而不是“after”:

before: transition callback (scope set to element to be shown)
after: transition callback (scope set to element that was shown)

如果您使用 before 回调,则信息将是设置到下一张幻灯片,以便您的链接将打开当前图像。

http://jquery.malsup.com/cycle/options.html

Why not have the button that opens the large version of the image grab the current image when it is clicked, rather than with a function that runs after transition:

<a id="full-size-button">View Bigger Image</a>

$('#full-size-button').live('click', function() {
    $('#full-size-button').attr('href', $('.portfolio-slider img').is(':visible').attr('href'));
});

NOTE: the selector for the visible image may need to be tweaked depending on your HTML structure.

----EDIT----

I just noticed in the JQuery Cycle docs that you may want to use your current code with the callback function for "before" rather than "after":

before: transition callback (scope set to element to be shown)
after: transition callback (scope set to element that was shown)

If you use the before callback the information will be set to the next slide so your link will open the current image.

http://jquery.malsup.com/cycle/options.html

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