我想知道使用 jQuery 为元素设置 CSS3 多个背景的正确方法。我想结束
content #{
background:
url(images/snapGrid2.gif) left top,
url(clientImages/vector-old-paper-1627.jpg);
}
谢谢
我想知道使用 jQuery 为元素设置 CSS3 多个背景的正确方法。我想结束
content #{
background:
url(images/snapGrid2.gif) left top,
url(clientImages/vector-old-paper-1627.jpg);
}
谢谢
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.
在这里查看我使用 jQuery 为多个背景找到的这个插件