点白色区域执行白色的事件 点黑色区域 执行黑色的事件  点白色和黑色的地方重叠的地方 执行黑色的事件

是两个div 并且定位上去的
<div class="cc">
cc
</div> <div class="dd">
dd
</div>
<style>
.cc{width: 500px;height: 500px;border: 1px solid #000;background: #000;margin-left: 250px;}
.dd{width: 200px;height: 200px;border: 1px solid #000;position: absolute;background: #fff;top: 0;left: 200px;}
</style>