mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
19 lines
338 B
HTML
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: 2600px;
|
|
height: 1400px;
|
|
background: url('./map.jpeg') no-repeat;
|
|
}
|
|
</style>
|