mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00

- add spacing between imports - alphabetize imports - removed app.html files in favor of an inline ion-nav - cleaned up config demo so it uses proper syntax - use file name main.html for the first page for the demo - name the app ApiDemoApp and first page ApiDemoPage - replace the ion-toolbars with ion-navbars closes #7019 closes driftyco/ionic-site#647
26 lines
374 B
HTML
26 lines
374 B
HTML
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Scroll</ion-title>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<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: 2600px;
|
|
height: 1400px;
|
|
background: url('./map.jpeg') no-repeat;
|
|
}
|
|
</style>
|