I already have setInterval for the images changing on my website. My problem is that it is only the first image that is replaced with the retina image. How can I load my retina.js again when the other images is loaded? They are changing every 5 sec
I use the script from retinajs.com.
By using CSS media queries you can serve these high–resolution images automatically to retina devices.
UPDATED: - Cons(retina.js): If you are using retina.js you are serving normal-sized and @2x images to retina devices, which dramatically increases the loading time of your site. I cannot recommend using retina.js if you care about a fast loading time. - CSS media query (Pros): By adding a CSS media query that detects high-definition displays you can change the image path of the original background-image to the @2x image for those displays.
Update:
You might need to modify retina.js to work in slideshows.(See here https://github.com/imulus/retinajs/pull/26)
Modifying these lines
to this..