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