-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>
答案 0 :(得分:6)
我仍然不确定你的目标是什么,但是当你点击锚时你可以做两件事: 你找到图像及其src并将-thumb替换为-full并使用它来触发你的fancybox方法,或者你可以使用html5数据属性并告诉你想要的图像网址:
<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;
})
答案 1 :(得分: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
回调来包装图像使用<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
通过这种方式,您不需要在html中传递长data-
属性(也不需要拆分)并保持简单:
<a id="manual1" href="javascript:;"><img src="/example-thumb.png" alt="example" /></a>
参见 DEMO
注意在我的演示中,我更改了导航箭头的css属性,以避免与链接的图像重叠。
答案 2 :(得分: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
});