27 lines
994 B
HTML
27 lines
994 B
HTML
<ion-view view-title="Wo ist das Tier">
|
|
<ion-content class="padding">
|
|
|
|
|
|
<div class="row" style="font-size: 12px;" ng-repeat="rows in chunkedData">
|
|
<div style="width: 100%; text-align: center;" class="col" ng-repeat="item in rows">
|
|
<img ng-class="{'shake':error, 'rubberBand': errorcode == '{{item.id}}', 'fadeOut': spielfertig == '{{item.id}}', 'fadeIn': spielneu == '{{item.id}}'}" class="myborder animated" src="img/{{ item.bild }}"width="96" height="96" alig="center" ng-click="answer(item.id)" ng-show="item.display">
|
|
<br>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="statusbar">
|
|
{{ tierindex }}
|
|
<div class="mentorhilfe" ng-click="hilfe()">
|
|
<div class="mentorborder" ng-show="showmentor">
|
|
<div class="mentor"></div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
|
|
|
|
<div class="mentorborderbravo" ng-show="showmentorbravo">
|
|
<div class="mentorbravo"></div>
|
|
</div>
|
|
</ion-content>
|
|
</ion-view>
|