You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

swipe-cards.component.html 427 B

12345678910111213
  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>