0

我想知道使用 jQuery 为元素设置 CSS3 多个背景的正确方法。我想结束

content #{
  background:
    url(images/snapGrid2.gif) left top,
    url(clientImages/vector-old-paper-1627.jpg);
}

谢谢

4

2 回答 2

2

Here it is.

$('.mbg').css('background', 'url(http://placehold.it/300x200) left top no-repeat, url(http://placehold.it/300x200) right bottom no-repeat')

Yep, it is basically the same as setting a single background image.

See it for yourself: jsFiddle.

于 2013-06-14T04:59:42.993 回答
1

在这里查看我使用 jQuery 为多个背景找到的这个插件

于 2013-06-14T04:54:35.043 回答