您好,登錄后才能下訂單哦!
Jquery中壓縮圖像
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
function fixImage(img, w, h) {
var newImg = new Image(); //獲得圖片的原始尺寸
newImg.src = img.src;
var lh; //用于保存img.height,IE下隱藏的圖片讀取不到,需currentStyle解決
if (newImg.width/newImg.height >= w/h) {
if (newImg.width > w) {
img.width = w;
img.height = w * newImg.height / newImg.width;
lh = window.ActiveXObject ? parseInt(img.currentStyle['height']) : img.height;
img.style.marginTop = (h - lh)/2 + 'px'; //順手垂直居中
} else {
img.width = newImg.width;
img.height = newImg.height;
lh = window.ActiveXObject ? parseInt(img.currentStyle['height']) : img.height;
img.style.marginTop = (h - lh)/2 + 'px'; //順手垂直居中
}
} else {
if (newImg.height > h) {
img.height = h;
img.width = newImg.width * h / newImg.height;
} else {
img.width = newImg.width;
img.height = newImg.height;
}
}
}
</script>
<body>
<p>
一幅圖像:
<img src="/i/eg_mouse.jpg" 40, 40)" ;/>
</body>
</html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。