I'm using twitter bootstrap carcass for my web project development. Currently I have full screen background image which I set for the body tag like:
body {
background: url('Content/images/planet.gif') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
It looks nice, and resizing works perfectly when I'm trying to change browser window size.
Now I would like to add some visual effects to my website by adding background carousel. Is there way to implement standard bootstrap carousel to the whole background?
I found a possible solution HERE, but what confuses me - is img tags which are using for different images. I was trying to do the same through background url's, but can't to figure it out.
I would add to mbigun's reply to use this css to keep the images from jerking:
Problem has been solved. Source of code is HERE. It's easier than I thought:
HTML:
CSS:
JS: