Need ala slider background images of the page (body). I did not find anything ready, I wrote a simple blank:
<!DOCTYPE html> <html> <head> <title>Background Slider</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script> </head> <body> <script type="text/javascript"> function sliderBackgroundBody() { window.currBg = window.currBg + 1; if (!window.currBg || window.currBg > 4) window.currBg = 1; $('body').css('background-image', 'url(bg' + window.currBg + '.jpg)'); setTimeout(sliderBackgroundBody, 3000); } $(document).ready(function() { sliderBackgroundBody(); }); </script> </body> </html> How to make the background change smoother?
ps: if you know the ready-made solution poke your nose into the link pliz))