Iegūstiet attēlu vietējo platumu CSS-triki

Anonim

Ja atlasīsit un .width()attēlos izmantosiet jQuery un pēc tam izmantosiet , jūs saņemsiet attēlu pašreizējo platumu, pat ja tas būs mērogots (piemēram, maksimālais platums: 100%;). Jūs varat piekļūt attēlu dabiskajam platumam (pat ja tam nav atribūtu, kas to deklarē) šādi:

// Get on screen image var screenImage = $("#image"); // Create new offscreen image to test var theImage = new Image(); theImage.src = screenImage.attr("src"); // Get accurate measurements from that. var imageWidth = theImage.width; var imageHeight = theImage.height;