我使用的是Angular 模态图库版本7。
我需要显示更大的图片enter image description here
我的模板代码是:
<ks-modal-gallery [id]="200"
[modalImages]="arrayImage"
[plainGalleryConfig]="plainGalleryRow"
[currentImageConfig]="{description: {strategy: 2, imageText: ''}}"
[previewConfig]="{visible: true, size: {width: 'auto', height: 'auto'}}"
[slideConfig]="{infinite: true, sidePreviews: {show: false}}"
[dotsConfig]="{visible: false}">
</ks-modal-gallery>
我的组件代码是
plainGalleryRow: PlainGalleryConfig = {
strategy: PlainGalleryStrategy.ROW,
layout: new LineLayout({ width: '0px', height: '0px' }, { length: 2, wrap: true }, 'flex-start')
};
求你了有谁能帮我找到解决办法吗?
1条答案
按热度按时间rqqzpn5f1#
Angular Modal Gallery v7是一个用于在Angular中创建模态图像库的库。要显示更大的图片,您可以增加包含图像的模态窗口的大小。下面是一个示例代码,展示了如何做到这一点:
在此示例中,customFooter模板将显示图像的宽度设置为500px。您可以调整宽度和高度以获得所需的显示大小。