Hello,
I am trying to use ion-scroll, and I would like to
- display an image (this works)
- scroll the image (this works)
- zoom the image (this does not work)
- programmatically set scroll x/y (i.e. scroll it to 100/100), (is functionality is apparently not implemented)
There appears to be no function to set the scrolling x,y programmatically.
This is my code:
<ion-scroll scrollX="true" scrollY="true" zoom="true" style="width: 100%; height: 100%">
<div [style.width]="width+'px'" [style.height]="height+'px'" [style.background]="imageUrl"</div>
</ion-scroll>
Does anyone know why
- zooming is not working?
- if there will be the option to programmatically set the scrolling x,y and perhaps the zooming too.
Many thanks,
Philipp