19 lines
548 B
HTML
19 lines
548 B
HTML
<!-- #docplaster -->
|
|
<h2>Filter/Stagger</h2>
|
|
|
|
<form>
|
|
<input #criteria (input)="updateCriteria(criteria.value)" placeholder="Search Heroes" />
|
|
</form>
|
|
|
|
<!-- #docregion filter-animations -->
|
|
<ul class="heroes" [@filterAnimation]="heroTotal">
|
|
<!-- #enddocregion filter-animations -->
|
|
<li *ngFor="let hero of heroes" class="hero">
|
|
<div class="inner">
|
|
<span class="badge">{{ hero.id }}</span>
|
|
<span>{{ hero.name }}</span>
|
|
</div>
|
|
</li>
|
|
<!-- #docregion filter-animations -->
|
|
</ul>
|
|
<!-- #enddocregion filter-animations --> |