I started to use (retina.js) to load an alternative image for retina displays.
<img ng-src="/path/to/image.png" width="100" height="100">
Which works with no problem.
So I started to change all my static images with this.
But I have some of them loaded as background image in my CSS:
.logo {
display: inline-block;
width: 60px;
height: 25px;
background: url(../img/logo-footer.png) no-repeat;
}
<li class="logo">
...
How can I change this to load an image with ng-src/retina.js
?
You can use media queries in css