gpt4 book ai didi

javascript - 检测用户何时使用 CSS 调整 Div 大小 : both

转载 作者:行者123 更新时间:2023-12-04 15:03:59 24 4
gpt4 key购买 nike

我知道我可以使用 ResizeObserver 来检测 div 的大小何时发生变化,但我只想知道用户何时使用 CSS 属性 resize: both,而不是在调整页面大小时。

// Detect when user resizes element with the property resize: both;
div {
resize: both;
overflow: auto;
border: 1px solid;
}
<div>
Hi!
</div>

最佳答案

您可以使用ResizeObserver:

const observer = new ResizeObserver(mutations => {
console.clear()
console.log(mutations[0].contentRect.width, mutations[0].contentRect.height)
});

observer.observe(test);
#test {
resize: both;
overflow: auto;
border: 1px solid;
width: 100px;
height: 100px;
}
<div id='test'>Hi!</div>

关于javascript - 检测用户何时使用 CSS 调整 Div 大小 : both,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66487704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com