I am using jQuery plugin supersized for full page back开发者_JS百科ground images (slideshow), I have setup everything correctly and it works perfectly.
Now what i want to achieve is, I was using multiple backgrounds earlier (CSS3), i..e transparent background over the original background for some textured effects and it looked cool, But after implementing the plugin, I'm unable to use multiple backgrounds.
Is there any way to use multiple backgrounds while retaining the bull page slideshow functionality (supersized plugin)?
If you didn't understand my question/problem just let me know.
Hi I would do it using :after.
Here is what I added to the demo page
#supersized li:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
top:0;
left:0;
background: #ff4e00;
}
Here it is in action
So all you would need to do is edit the background on that part of the css. Hope this is what you were after.
精彩评论