开发者

How to background repeat jquery

开发者 https://www.devze.com 2023-03-16 01:11 出处:网络
I\'m trying to not repeat background. Here is my code $(\"body\").css({background : \"url(../img/bgr.png)\", backgroundRepeat: \'none\'});

I'm trying to not repeat background.

Here is my code

$("body").css({background : "url(../img/bgr.png)", backgroundRepeat: 'none'});

The problem is that the background repeats. How t开发者_运维知识库o fix that ?


Maybe you should give backgroundRepeat: 'no-repeat' a chance.


Your problem is that background sets all background-related options while background-repeat is just a single one - which is overridden by background.

The best solution is using backgroundImage for the background image and backgroundRepeat for the repetition since that will not touch other background options which might already exist.

Another solution would be setting background to url(...) no-repeat


use css class:

css:

.bg {background:url(../img/bgr.png) no-repeat;}

js:

$('body').addClass('bg');


Try this:

$("body").css({background : "url(../img/bgr.png)", background-repeat: 'no-repeat'});


Have you tried:

$("body").css({background : "url(../img/bgr.png) no-repeat" });

for dynamically,

$("body").css({background : 'url('+imageUrl+') no-repeat' })
0

精彩评论

暂无评论...
验证码 换一张
取 消