ResizeObserverEntry.contentRect - Web APIs 编辑
The contentRect
read-only property of the ResizeObserverEntry
interface returns a DOMRectReadOnly
object containing the new size of the observed element when the callback is run. Note that this is better supported than ResizeObserverEntry.borderBoxSize
or ResizeObserverEntry.contentBoxSize
, but it is left over from an earlier implementation of the Resize Observer API, is still included in the spec for web compat reasons, and may be deprecated in future versions.
Syntax
var contentRect = resizeObserverEntry.contentRect;
Value
A DOMRectReadOnly
object containing the new size of the element indicated by the target
property.
If the target
is an HTML Element
, the returned contentRect
is the element's content box. If the target
is an SVGElement
, the returned contentRect
is the SVG's bounding box.
Examples
The following snippet is taken from the resize-observer-text.html (see source) example. This uses a simple feature detection test to see if the browser supports the newer ResizeObserverEntry.contentBoxSize
property — if so, it uses that to get the sizing data it needs. If not, it uses contentRect
.
const resizeObserver = new ResizeObserver(entries => {
for (let entry of entries) {
if(entry.contentBoxSize) {
h1Elem.style.fontSize = Math.max(1.5, entry.contentBoxSize.inlineSize/200) + 'rem';
pElem.style.fontSize = Math.max(1, entry.contentBoxSize.inlineSize/600) + 'rem';
} else {
h1Elem.style.fontSize = Math.max(1.5, entry.contentRect.width/200) + 'rem';
pElem.style.fontSize = Math.max(1, entry.contentRect.width/600) + 'rem';
}
}
});
resizeObserver.observe(divElem);
Specifications
Specification | Status | Comment |
---|---|---|
Resize Observer The definition of 'contentRect' in that specification. | Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论