gpt4 book ai didi

javascript - 如果 div 与另一个 div 重叠,如何隐藏它

转载 作者:可可西里 更新时间:2023-11-01 13:39:25 25 4
gpt4 key购买 nike

这是 CSS 还是 javascript?我只需要将 div 更改为 display:none 如果它在另一个 div 的 20px 范围内。谢谢

最佳答案

试试这个 https://github.com/brandonaaron/jquery-overlaps

//Listen to the event that will be triggered on window resize:
window.onresize = function(event)
{
// test if one element overlaps another
if($('#div1').overlaps('#div2'))
{
//Do stuff, like hide one of the overlapping divs
$('#div1').hide();
}
}

关于javascript - 如果 div 与另一个 div 重叠,如何隐藏它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7394461/

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