我目前正在使用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");
});
有没有人有任何想法?