調整圖像大小有在Jquery resizing image固定的高度和寬度固定與jQuery
在代碼調整答案,有:
var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image
是否有可能調整到100像素X 100像素的固定大小?
調整圖像大小有在Jquery resizing image固定的高度和寬度固定與jQuery
在代碼調整答案,有:
var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image
是否有可能調整到100像素X 100像素的固定大小?
或者你可以使用CSS作爲background-image
而background-size: cover; background-position: center center;
它需要是img標籤 – Paramasivan
檢查了這一點,https://code.google.com/p/resize-crop/ – Danny
謝謝!有用! – Paramasivan
這可以用CSS'寬度來完成:100像素,高度:100像素;'但是,圖像將被拉伸,看起來很有趣這樣。您可能會在jcrop庫中進行劃分 – docodemore
我正在使用用戶上傳的圖像在步進傳送帶內。 jcrop庫在那裏不起作用。 – Paramasivan
CSS具有可以在絕對定位元素上設置的** clip **屬性。 [JSBin](http://jsbin.com/kajid/3/edit)。 – ryentzer