如何解决本机脚本轮播:无法通过索引找到轮播网格子项
我想用 nativescript-carousel 视图插件创建一个动态轮播。
我使用以下代码:
<Carousel #carousel
[items]="fiches"
debug="true"
height="100%"
width="100%"
color="red"
backgroundColor="red"
indicatorOffset="0,-30"
indicatorColor="#fff000"
finite="true"
bounce="false"
showIndicator="true"
verticalAlignment="top"
android:indicatorAnimation="DROP"
>
<CarouselItem
height="red"
backgroundColor="red"
*ngFor="let item of fiches; let id=index"
[id]="'slide '+id"
verticalAlignment="center"
>
<GridLayout rows="*" cols="*,*">
<WebView height="100%" width="100%"
[src]="item.content" (loaded)="onWvloaded($event)">
</WebView>
</GridLayout>
</CarouselItem>
</Carousel>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。