我目前使用的fancybox 2版点击缩略图时,显示我的图片,但我似乎无法得到的fancybox在视口中的坐在中间,纵向来讲,因为它水平的罚款。
我已经尝试了不少东西,这是最新的:
CSS
.fancybox-wrap {
position: fixed !important;
top: 50px !important;
}
jQuery的
jQuery(document).ready(function() {
$(".fancybox-wrap").css("position", "absolute");
// fancybox initialisation etc
});
$(window).scroll(function() {
$('.fancybox-wrap').css('top', $(this).scrollTop() + "50px");
});
有没有人有什么想法?