首頁 > web前端 > css教學 > 如何使用 jQuery 取得 Div 的背景影像尺寸?

如何使用 jQuery 取得 Div 的背景影像尺寸?

Susan Sarandon
發布: 2024-12-13 20:20:12
原創
779 人瀏覽過

How to Get a Div's Background Image Dimensions Using jQuery?

使用jQuery 確定背景圖像尺寸

簡介

使用jQuery 檢索div 背景圖像的尺寸可能看起來很簡單但也帶來了挑戰。本文解決了這個任務,並提出了一個簡化流程的擴展解決方案。

問題:

查詢:如何取得背景圖片使用 jQuery 調整 div 的大小(寬度和高度)?

回應A:

要擷取背景影像尺寸,請採用以下方法:

var image_url = $('#myDiv').css('background-image'),
    image;

// Remove url() or url("")
image_url = image_url.match(/^url\("?(.+?)"?\)$/);

if (image_url[1]) {
    image_url = image_url[1];
    image = new Image();

    // Load image if needed
    $(image).load(function () {
        alert(image.width + 'x' + image.height);
    });

    image.src = image_url;
}
登入後複製

回應B(20188) :

為了全面解法:

var getBackgroundImageSize = function(el) {
    var imageUrl = $(el).css('background-image').match(/^url\(["']?(.+?)["']?\)$/);
    var dfd = new $.Deferred();

    if (imageUrl) {
        var image = new Image();
        image.onload = dfd.resolve;
        image.onerror = dfd.reject;
        image.src = imageUrl[1];
    } else {
        dfd.reject();
    }

    return dfd.then(function() {
        return { width: this.width, height: this.height };
    });
};
登入後複製

用法

getBackgroundImageSize(jQuery('#mydiv'))
    .then(function(size) {
        console.log('Image size is', size.width, size.height);
    })
    .fail(function() {
        console.log('Could not get size because could not load image');
    });
登入後複製

以上是如何使用 jQuery 取得 Div 的背景影像尺寸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板