您最多选择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>