I would like to create a slideshow in the header area of my page. It should change the background image every 10 seconds with a nice fade effect. And since I'm using jQuery for other stuff already I would like to use it for that as well.
So my markup is just:
<div id="header">
<!--other stuff here...-->
</div>
And my CSS at the moment is:
#header {
background: url('images/header_slides/slide_1.jpg') no-repeat;
}
So now what I want is that after 10 seconds it would change to
#header {
background: url('images/header_slides/slide_2.jpg') no-repeat;
}
with a nice slow fade effect.