I Wanted to add full background image for my ionic app & different image for each device.
Here is my css code.
Media Query for iphone 6
@media(max-width:750px) and (max-height:1334px){
.pane, .view{
background: url(../img/home/Default-667h.png) no-repeat center top fixed;
background-size: 100% auto;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
media query for iphone 4
@media(max-width:640px) and (max-height:960px){
.pane, .view{
background: url(../img/home/Default@2x~iphone.png) no-repeat center top fixed;
background-size: 100% auto;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
This is not working in my app.
Whether ionic supports media query?