我slideshowGroups
在同一页面中使用了两个:一个用于图片(图库),一个仅用于 html(在 iframe 中)。如何为每个设置不同的边距?
我需要有marginBottom
= 大约 80 像素和marginLeft
= 大约 200 像素的图片,以便为专门设计的控件留出空间,但 html-s 应该垂直和水平居中。
谢谢!
我slideshowGroups
在同一页面中使用了两个:一个用于图片(图库),一个仅用于 html(在 iframe 中)。如何为每个设置不同的边距?
我需要有marginBottom
= 大约 80 像素和marginLeft
= 大约 200 像素的图片,以便为专门设计的控件留出空间,但 html-s 应该垂直和水平居中。
谢谢!
设置hs.align = 'center';
为两个幻灯片组的全局设置。slideshowGroup
无论您使用什么边距,这都会居中。
所有边的默认边距为 15。我不知道slideshowGroup
您画廊的名称,但可以说是'gallery'
- 将其添加到您的设置中(需要 highslide-full.js):
hs.Expander.prototype.onInit = function () {
hs.marginBottom = (this.slideshowGroup == 'gallery') ? 80 : 15;
hs.marginLeft = (this.slideshowGroup == 'gallery') ? 200 : 15;
};