当一个 div 在滚动时悬停在另一个 div 上时,如何发出警报?这是一个工作示例, http://jsfiddle.net/uprosoft/Ek5Gy/267/
虽然为了发出警报,但我找不到要跟踪的 jQuery 代码。
代码:
HTML
<div id="container">
<div id="div1">test</div>
<br>
<div id="div2"> another test</div>
</div>
CSS
#div1{
background: green;
position: fixed;
width: 100%;
}
#div2{
background: yellow;
position: relative;
width: 100%;
margin-top: 100px;
}
#container{
height: 1000px;
}
查询 ???
/* what jquery code goes here? to alert when the yellow div touches the green div upon scroll? */