我正在将不同大小的图像加载到内容区域中,并且随着它们按比例调整大小,图像的任何给定两侧与内容区域的边界之间通常存在间隙。
我在这张图片的顶部分层了一个矩形,调整了不透明度,以改变下面背景图片的可见度。我希望这个过滤器与图像的大小相匹配。
这是元素的定义方式:
<td id="svgContentCell">
<svg id="svg" width="1000" height="750" version="1.1" onload="Init()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink= "http://www.w3.org/1999/xlink"
onmousedown="onMouseDown(evt)" onmousemove="onMouseMove(evt)" onmouseup="onMouseUp(evt)" >
<image id="background" x="0" y="0" width="100%" height="100%" xlink:href=""></image>
<rect id="filter" x="0" y="0" width="100%" height="100%" fill="rgb(255, 255, 255)" fill-opacity="0"></rect>
</svg>
</td>
我认为这使用 Javascript 会相对简单,但是我无法检索有关background
图像大小的任何有用数据。客户端宽度属性返回 0。
var bg = document.getElementById('background');
var scrollWidth = bg.scrollWidth; // result: 0
var clientWidth = bg.clientWidth; // result: 0
var offsetWidth = bg.offsetWidth; // result: 0
var width = bg.getAttribute("width"); // result: 100%
// edit: BoundingClientRect() returns size of container not the scaled image.
var bg = document.getElementById("background");
var rect = bg.getBoundingClientRect();
var height = rect.height; // result: 750
var width = rect.width; // result: 1000
// I can retrieve the **unscaled** image dimensions like this
var bg = document.getElementById('background');
var address = bg.getAttribute('xlink:href');
var original = new Image();
original.src = address;
var unscaledWidth = original.width;
var unscaledHeight = original.height;
有谁知道我可以获得缩放background
图像的实际像素宽度和高度的方法,以便我可以filter
适当地调整元素的大小?