问题描述
我想用 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 (将#修改为@)