elmt.style.backgroundImage调整图片大小

时间:2015-01-03 12:55:12

标签: javascript jquery css background-image

我不知道如何将图片调整为宽度= 90,高度= 127

elmt.style.backgroundImage = "url("+ string1 +")";

with string1 =" images /♠" + random1 +" .jpg&#34 ;; (random1为1,2,3或4)

你能帮帮我吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用background-size属性调整图片大小。



var div = document.getElementsByTagName('div')[0];

div.style.backgroundImage = 'url(http://lorempixel.com/500/500)';
div.style.backgroundSize = '50px 50px';
div.style.width = '50px';
div.style.height = '50px';

<div></div>
&#13;
&#13;
&#13;