I have this HTML:
<div id="content_home_preview">
</div>
And this CSS:
#content_home_preview{
float: left;
margin: 0;
padding: 0;
width: 940px;
height: 469px;
background-image: url("../Images/image1.png");
repeat: no-repeat;
}
How can I create slideshow effect with next images e.g. image2, image3, etc...
I tried jquery cycle but its form is like:
<div id="content_home_preview">
<div class="image1"></div>
<div class="image2"></div>
</div>
but i only need script to repeatly change background-image property with fading efect...
Thank you