,可以通过以下步骤实现:
以下是一个示例代码,用于检测两个div是否重叠并删除其中一个div的类:
<!DOCTYPE html>
<html>
<head>
<style>
.div1 {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
top: 100px;
left: 100px;
}
.div2 {
width: 100px;
height: 100px;
background-color: blue;
position: absolute;
top: 150px;
left: 150px;
}
</style>
</head>
<body>
<div class="div1">Div 1</div>
<div class="div2">Div 2</div>
<script>
var div1 = document.querySelector('.div1');
var div2 = document.querySelector('.div2');
function checkOverlap() {
var rect1 = div1.getBoundingClientRect();
var rect2 = div2.getBoundingClientRect();
if (rect1.top < rect2.bottom && rect1.bottom > rect2.top && rect1.left < rect2.right && rect1.right > rect2.left) {
div1.classList.remove('div1');
}
}
checkOverlap();
</script>
</body>
</html>
在上述示例中,我们定义了两个div(div1和div2),并设置它们的位置和样式。通过JavaScript的getBoundingClientRect()方法获取div的位置信息,并使用条件判断来检测两个div是否重叠。如果重叠,则使用classList.remove()方法来删除div1的类。
请注意,上述示例仅为演示目的,实际应用中可能需要根据具体情况进行适当的修改和调整。
领取专属 10元无门槛券
手把手带您无忧上云