Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

mcq.component.html 570 B

pirms 4 gadiem
pirms 4 gadiem
12345678910111213
  1. <section class="question">
  2. <h3> {{ text }} </h3>
  3. <div class="options" [ngClass]="{'inactive' : selectedChoice }">
  4. <button *ngFor="let choice of choices"
  5. (click)="selectedChoice = choice.value"
  6. [ngClass]="{'correct': selectedChoice === choice.value && selectedChoice === correctAnswer, 'wrong': selectedChoice === choice.value && selectedChoice !== correctAnswer }">
  7. {{ choice.text }}
  8. <ion-checkbox mode="ios" [checked]="selectedChoice === choice.value"></ion-checkbox>
  9. </button>
  10. </div>
  11. </section>