This commit is contained in:
Lorenzo Iovino 2016-01-30 21:41:27 +01:00
parent 3956068c85
commit 9d351bb809
7 changed files with 11 additions and 7 deletions

View file

@ -70,9 +70,11 @@ $pre-img-ratios: append($pre-img-ratios, $home-categories-img-ratio);
.category-image .category-image
{ {
width: 100%; width: 50%;
height: 100%; height: 50%;
border-radius: 2px; border-radius: 2px;
top:25%;
left:25%;
} }
.category-bg .category-bg

View file

@ -2,7 +2,7 @@
{ {
"id":"booking", "id":"booking",
"title":"Prenota", "title":"Prenota",
"image":"img/feeds/news.jpg", "image":"img/Cart.png",
"home_sources":[ "home_sources":[
{ {
"id":"Trenitalia", "id":"Trenitalia",
@ -38,7 +38,7 @@
{ {
"id":"shop", "id":"shop",
"title":"Spendi i crediti", "title":"Spendi i crediti",
"image":"img/Cart.png", "image":"img/Present.png",
"home_sources":[ "home_sources":[
{ {
"id":"McDonald", "id":"McDonald",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 323 B

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

View file

@ -8,20 +8,22 @@
<ion-content> <ion-content>
<div class="list card"> <div class="list card">
<div class="item item-thumbnail-left"> <div class="item item-thumbnail-left" style="background-image: url('img/ScoreBkg.png');">
<img src=""> <img src="">
<h2>Punti {{user.score}}</h2> <h2>Punti {{user.score}}</h2>
<p>dkdkdk</p> <p>dkdkdk</p>
</div> </div>
</div> </div>
<div class="row categories-list"> <div class="row categories-list">
<div ng-repeat="category in home_categories" class="col col-50"> <div ng-repeat="category in home_categories" class="col col-50">
<a class="home-category" ui-sref="app.category({categoryId: (category.id | slugify)})"> <a class="home-category" ui-sref="app.category({categoryId: (category.id | slugify)})">
<div class="category-bg"></div>
<pre-img ratio="_1_1" helper-class="square-image"> <pre-img ratio="_1_1" helper-class="square-image">
<img class="category-image" ng-src="{{category.image}}" spinner-on-load> <img class="category-image" ng-src="{{category.image}}" spinner-on-load>
</pre-img> </pre-img>
<div class="category-bg"></div>
<span class="category-title">{{category.title}}</span> <span class="category-title">{{category.title}}</span>
</a> </a>
</div> </div>