我想创建一个像这个链接fancybox layout这样的布局。 fancybox提供了创建tpl的选项,到目前为止一直很好。
问题在于我不知道如何获得下一个&当前对象的上一个图像并将其传递给div。
我看到了fancybox页面http://fancyapps.com/fancybox/中列出的回调,但我无法弄清楚如何做到这一点。 我也看到了这个小提琴jsfiddle.net/xW5gs/。它存储了上一个图像链接,但我无法将其作为背景传递给带有jquery的div。
任何帮助将不胜感激。 感谢
编辑:
我正在使用像这样的fancybox:
$('.fancybox').fancybox({
'nextEffect': 'none',
'prevEffect': 'none',
'tpl': {
wrap: '<div class="fancybox-wrap" tabIndex="-1"><div id="prev-img"></div><div id="next-img"></div><a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',
closeBtn : '<a title="Close" class="fancybox-item fancybox-close hide-me" href="javascript:;"></a>'
},
afterLoad: function(current, previous) {
console.log( 'Current: ' + current.href );
console.log( 'Previous: ' + (previous ? previous.href : '-') );
if (previous) {
document.getElementById('prev-img').style.backgroundImage = 'url('+previous.href+')';// here I am trying to pass as a background the url of the previous object to the div with id #prev-img.
console.log( 'Navigating: ' + (current.index > previous.index ? 'right' : 'left') );
}
}
});
答案 0 :(得分:1)
$(function(){
$('.fancybox').fancybox({
'padding' : 0,
'arrows': true,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'speedIn': 1000,
'speedOut': 700,
'helpers' : {
'title' : { type : 'inside',position : 'top'}
},
'afterShow': function () {
// initialize some variables
var gallerySize = this.group.length,
next, prev,next_i,prev_i;
if (this.index == gallerySize - 1) {
// this is the last element of the gallery so next is the first
next = $(".fancybox").eq(0).attr("title"),
prev = $(".fancybox").eq(this.index - 1).attr("title");
next_i = $(".fancybox").eq(0).attr("href"),
prev_i = $(".fancybox").eq(this.index - 1).attr("href");
} else if (this.index == 0) {
// this is the first image of the gallery so prev is the last
next = $(".fancybox").eq(this.index + 1).attr("title"),
prev = $(".fancybox").eq(gallerySize - 1).attr("title");
next_i = $(".fancybox").eq(this.index + 1).attr("href"),
prev_i = $(".fancybox").eq(gallerySize - 1).attr("href");
} else {
// otherwise just add or substract to index
next = $(".fancybox").eq(this.index + 1).attr("title"),
prev = $(".fancybox").eq(this.index - 1).attr("title");
next_i = $(".fancybox").eq(this.index + 1).attr("href"),
prev_i = $(".fancybox").eq(gallerySize - 1).attr("href");
}
// set title attributes to fancybox next/prev selectors
$(".fancybox-next").attr("title", next);
$(".fancybox-prev").attr("title", prev);
$(".fancybox-next").css('background-image', 'url(' + next_i + ')');
$(".fancybox-prev").css('background-image', 'url(' + prev_i + ')');
$(".fancybox-next").css('background-size', 'cover');
$(".fancybox-prev").css('background-size', 'cover');
}
});
})
您可以使用此代码在下一个和上一个按钮上显示图像。