使用jQuery设置多个CSS3背景

时间:2013-06-14 04:48:03

标签: jquery

我想知道使用jQuery为元素设置CSS3多个背景的正确方法。我想最终得到

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

由于

2 个答案:

答案 0 :(得分:2)

在这里。

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

是的,它与设置单个背景图像基本相同。

亲眼看看:jsFiddle

答案 1 :(得分:1)

使用jQuery here

查看我为多个背景找到的插件