如何更改fancybox宽度?

时间:2017-12-21 09:09:44

标签: javascript html fancybox

我有一个画廊宽度1920宽度和长度,但fancybox显示我的图像与屏幕的适合宽度和高度,我想让我的图像适合屏幕宽度与高度滚动,这是我的代码:

youtube-dl

1 个答案:

答案 0 :(得分:1)

这是我自己使用fancybox的一小段代码片段。 我按百分比调整了宽度和高度。

$(".imagebox").fancybox({
    maxWidth    : 600,
    maxHeight   : 600,
    wrapCSS     : 'fancy-imagebox', // add a class selector to the fancybox wrap
    margin      : [0, 0, 0, 0],
    width       : '70%',
    height      : '90%',
    autoSize    : true
});