mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
30 lines
600 B
HTML
30 lines
600 B
HTML
|
|
<ion-view nav-title="Content">
|
|
|
|
<ion-content>
|
|
|
|
<!--
|
|
<f></f>
|
|
<f></f>
|
|
<f></f>
|
|
<f></f>
|
|
<f></f>
|
|
-->
|
|
<b>Items: {{items.length}}</b>
|
|
<ion-list>
|
|
<ion-item *for="#item of items">
|
|
{{item.title}}
|
|
</ion-item>
|
|
</ion-list>
|
|
|
|
</ion-content>
|
|
|
|
</ion-view>
|
|
<style>
|
|
ion-content { background-color: black !important; }
|
|
.item { background: transparent !important; }
|
|
.item-content { background: transparent !important; }
|
|
.item-label { color: #fff; }
|
|
/*f { display: block; height: 400px; width: 100%; background-color: #387ef5; margin-bottom: 15px; }*/
|
|
</style>
|