選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

13 行
427 B

  1. <div class="container">
  2. <ion-card #tinderCard *ngFor="let question of questions; let i = index"
  3. [ngStyle]="{ zIndex: questions.length - i, transform: 'scale(' + (20 - i) / 20 + ') translateY(-' + 20 * i + 'px)' }">
  4. <p>
  5. {{ question }}
  6. </p>
  7. <div class="action-buttons">
  8. <button> True </button>
  9. <button> False </button>
  10. </div>
  11. </ion-card>
  12. </div>