I have a simple full screen background image as shown below:
body {
 /* The background image used */
 background-image: url("../images/bg-one.jpg");
 /* Full height */
 height: 100vh; 
 width: 100vw;
 /* Hide scroll */
 overflow-x: hidden;
 overflow-y: hidden;
 /* Center and scale the background image nicely */
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}
I would like to know how I can make the background image change every 5 seconds with a fade in/out transition. Sorry if this seems like a newbie question but I'm just starting out learning Js/Jquery.
My second question would be is it possible to do this using pure CSS3 or would js/jquery work better?
Many thanks, Aidan
 
     
    