I've created a design with an image in the background using the following CSS:
body {
width: 1000px;
margin: 0 auto;
background: url('/images/bg.jpg') top center no-repeat;
background-attachment: scroll;
}
The image is 2000px in width.
I am interested in rotating the background image with three different images bg1.jpg
, bg2.jpg
, and bg3.jpg
. Could someone help me find a simple solution to achieve this?