I am trying to stretch a transparent image over one layer, while keeping the image size in another layer because it is supposed to be a pattern. Here is my code:
div.someclass {
background-image: url('someimage.png'), url('someimage2.jpg');
}
I could separate this div into two different elements stacked on each other, but since I am animating them using jQuery, performance would be significantly impacted.
What should I do?