如何風格的背景圖像的URL的高度和寬度造型背景圖片地址
我使用煎茶觸摸,建設一個MobileApp, 我有一個圖像的視圖 - 的xtype
var profilePicture = {
xtype : 'image',
style : 'margin-top:10px;',
id : 'profilePhoto',
src : 'resources/images/profile.png',
height : '104px',
width : '84px'
};
我在面板中添加了這個圖像 我動態地在我的控制器中設置圖像的src與我從服務器獲取的json的值,
src = localStorage.httpServerPrefix + profile.imageURI; //我得到圖像的URL Ext.getCmp(「profilePicture」)。setSrc(src。);
當我在瀏覽器 我得到這樣看,
<div class="x-img" id="profilePhoto" style="margin-top: 10px; height: 104px !important; width: 84px !important; background-image: url(http://127.0.0.1:8080/Milna/user/mphoto/1?version=7); "></div>
高度和DIV的寬度設置爲104px和84px。 我的圖像的像素是1600×1200,因此它不適合上面的div, 我可以風格的背景圖像的網址? 我能做些什麼來設計來自url的圖像?
哇,這是非常有用的,謝謝你vivek, – Sri
歡迎@vaish如果你認爲我的答案是有用的接受它 –