How can i make my inline styled div to change it background image url after 5 second?
Example:
<div class="foobar" style=" background(url'red.png'; "> </div>
After 5 seconds, it need to be:
<div class="foobar" style=" background(url'blue.png'; "> </div>
and After 5 seconds, it need be:
<div class="foobar" style=" background(url'yellow.png'; "> </div>
So, It can cycle 3 images in this foobar, Red, Blue and Yellow background images.