我在 lwc 中构建的闪电旋转木马遇到了一些问题,就像它在旋转木马内仅显示 5 到 6 张图像,而其余图像未显示。如果图像数量有任何限制,您能否建议最好的方法或替代方法,如 HTML 幻灯片或任何其他方式来为轮播内的 1000 张图像构建轮播。在这里,我从父组件加载图像。
import { LightningElement, api } from "lwc";
export default class fcxmCarousel extends LightningElement {
@api selectdImage;
@api value;
}
<template>
<div class="slds-m-around_medium">
<div class="container">
<lightning-carousel>
<template for:each={value} for:item="rows">
<lightning-carousel-image width="100%" height="50%" key={imageURL} src = {rows.imageURL}
header={rows.imageName}
description={rows.imageDescription}>
</lightning-carousel-image>
</template>
</lightning-carousel>
</div>
</div>
<!-- </lightning-card> -->
</template>