我的Magnific灯箱出了点问题。在我的画廊中,我想全屏显示垂直图片。我找到了verticalFit选项,因此似乎是这样。
$('li.lightbox').magnificPopup({
type: 'image',
delegate: 'a',
image:{
verticalFit: true, // Fits image in area vertically
tError: '<a href="%url%">The image</a> could not be loaded.'
},
gallery: { enabled: true },
callbacks: {
buildControls: function () {
this.contentContainer.append(this.arrowLeft.add(this.arrowRight));
}
}
});
不幸的是,垂直图像不合适。你有没有人有这个插件的经验,有同样的问题或想法如何解决这个问题?
这是我发现问题的website。
感谢您的帮助! =)
干杯 埃里克
答案 0 :(得分:0)
经过数小时的搜索,问题非常简单。
<!DOCTYPE html>
不知何故,html的'l'消失了,这导致了我的代码的许多奇怪的行为,但没有关于此的错误消息!!!
我很高兴看到它并且同时感到惭愧。
非常感谢所有想到这一点的人。
埃里克