9

-largeAny Ideas 伙计们?我正在尝试在fancybox 中链接打开的图像。我到处都看过了!听起来很简单...

所以这是我正在使用的代码:

<a id="manual1" href="javascript:;"><img src="/example-thumb.png" alt="example" /></a>
<script type="text/javascript" src="/Cms_Data/Sites/Base/Files/js/fancyboxV2.1.0/jquery.fancybox.pack.js"></script>

<script type="text/javascript">

$("#manual1").click(function() {
$.fancybox([
    '/example-large.jpg',
    '/example-large2.jpg',
    {
        'href'  : '/example-large3.jpg',
        'title' : 'Lorem ipsum '
    }
    ], {
        padding : 38,
        nextEffect : 'fade',
        prevEffect : 'fade'
    });
});
</script>
4

3 回答 3

6

我仍然不确定你在追求什么,但是如果你点击锚点时你可以做两件事:你找到图像及其 src 并将 -thumb 替换为 -full 并使用它来触发你的fancybox方法,或者你可以使用 html5 数据属性并告诉你想要什么图像 url:

<a id="manual1" data-image="/example-full.jpg,/example-full-2.jpg'><img src="/example-thumb.png" alt="example" /></a>

<script type="text/javascript">
$('#manual1').click(function() {
    var data = $(this).data('images').split(','),
        options = {
            padding : 38,
            nextEffect : 'fade',
            prevEffect : 'fade',
            type: 'image'
        };
    $.fancybox.open(data , options );
})
 </script>

和一个演示:http: //jsfiddle.net/voigtan/jJpAM/2/

如果您只使用一张图片,请进行演示

$('.test').click(function() {
    var a = this,
        images = [],
        data = $(a).data('images').split(','),
        options = {
            padding : 38,
            nextEffect : 'fade',
            prevEffect : 'fade',
            type: 'image',
            afterShow: function() {
                $("img.fancybox-image").click(function() {
                    window.location.href = a.href;                        
                });
            }
        };
    $.fancybox.open(data , options );
    return false;
})

和另一个演示:http: //jsfiddle.net/voigtan/jJpAM/3/

于 2012-12-19T13:42:17.310 回答
4
what I'm after is when the <a id="manual1"> is clicked the example-large is 
displayed in fancybox - the viewed example-large.jpg can then be clicked 
to go to a new page

根据您的代码(fancybox 手动方法),另一种更简单、更简洁的方法是为每个图像添加自定义链接beforeShow选项,然后使用回调将图像与 an<a>及其对应的链接一起包装,例如:

$(document).ready(function() {
    $("#manual1").click(function() {
        $.fancybox.open([
            {
            href: 'http://fancyapps.com/fancybox/demo/1_b.jpg',
            title: 'this image links to bbc news',
            link: 'http://www.bbc.co.uk/news/'},
        {
            href: 'http://fancyapps.com/fancybox/demo/2_b.jpg',
            title: 'this image links to jquery',
            link: 'http://jquery.com'},
        {
            href: 'http://fancyapps.com/fancybox/demo/3_b.jpg',
            title: 'this image links to fancybox',
            link: 'http://fancyapps.com'}
        ], {
            beforeShow: function() {
                $(".fancybox-image").wrap('<a href="' + this.link + '" />')
            },
            padding: 38,
            nextEffect: 'fade',
            prevEffect: 'fade'
        });
        return false;
    });
}); // ready

通过这种方式,您不需要data-在 html 中传递 long 属性(也不需要拆分)并保持简单:

<a id="manual1" href="javascript:;"><img src="/example-thumb.png" alt="example" /></a>

演示

请注意,在我的演示中,我更改了导航箭头的 css 属性以避免与链接图像重叠。

于 2012-12-19T18:29:27.437 回答
1

这个更简单简短的代码

$.fancybox.open([
{
    href : 'http://fancyapps.com/fancybox/demo/1_b.jpg',
    link : 'http://jquery.com/'}
],{
    afterShow: function() {
    $(".fancybox-image").wrap('<a href="' + this.link + '" />')
        },   

    padding : 0   
});
于 2013-08-24T10:32:32.667 回答