Files
ionic-framework/demos/scroll/main.html
2016-02-03 17:47:35 -05:00

19 lines
338 B
HTML

<ion-toolbar>
<ion-title>Scroll</ion-title>
</ion-toolbar>
<ion-content>
<ion-scroll scrollX="true" scrollY="true" style="width: 100%; height: 100%">
<div class="map-div"></div>
</ion-scroll>
</ion-content>
<style>
.map-div {
width: 1500px;
height: 1500px;
background: url('./map.jpeg') no-repeat;
}
</style>