我不知道如何将图片调整为宽度= 90,高度= 127
elmt.style.backgroundImage = "url("+ string1 +")";
with string1 =" images /♠" + random1 +" .jpg&#34 ;; (random1为1,2,3或4)
你能帮帮我吗?
谢谢!
答案 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;