Ionic full screen background image
in
ion-view class="pane"
all the stuff is rendered ... i did not try it out but i think you can manage this with
.pane { background: url(image) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; }
In your css, try:
.scroll-content {
background: url(image) [add image position info here];
[add any more properties here]
}
This will set the background for the full content area.