私はペーパーカードでポリマーiron-list
を使用していますが、デバイスの向きを変えるまではすべてのカードが重なっています。 paper-card
の画像ロード後にのiron-list
に電話する方法を教えてください。ネットワークから画像をロードした後のアイアンリストオーバーラップペーパーカード
<iron-list items="[[data.data]]" as="item" scroll-target="document">
<template>
<div style="margin-top: 20px">
<!--Card with header image-->
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000" alt="Emmental">
<div class="card-content">
<b>#[[index]] - [[item.category]]</b>
<p>[[item.heading]]</p>
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
</template>
</iron-list>