現在、サムネイルをクリックしたときに画像を表示するために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");
});
誰かアイデアはありますか?