JavaScript:检查移动div是否已到达屏幕上的某个点

时间:2016-06-12 00:48:12

标签: javascript

我想检查div是否已移动到某一点。这是我的代码无效。

JS:

(function deathCondition() {
    if (wordlist.offsetTop >= 500) {
        alert('hey');
    }
})();

我甚至试图独自一人。

if (wordlist.offsetTop >= 500) {
       alert('hey');
  }

1 个答案:

答案 0 :(得分:0)

不确定wordlist是否包含元素的id或类,但无论如何你需要存储元素的id或类:

var wordlist = document.getElementById('wordlist');

然后找出偏移的元素:

elOffset = wordlist.offsetTop;