JavaScript判斷元素是否在瀏覽器可視區域

admin發表於2017-04-17

分享一段程式碼例項,它實現了判斷一個元素是否在瀏覽器可見區域的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div {
  width:200px;
  height:100px;
  background:green;
  margin:10px;
  line-height:100px;
  text-align:center;
}
#one {
  position:absolute;
  left:-500px;
}
</style>
<script>
function isElementInViewport(el) {
  var rect = el.getBoundingClientRect();
  return (
    rect.top >= 0 && rect.left >= 0 &&
    rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
    rect.right <= (window.innerWidth || document.documentElement.clientWidth)
  );
}
window.onload = function () {
  var str = "";
  var oneDiv = document.getElementById("one");
  var twoDiv = document.getElementById("two");
  var show = document.getElementById("show");
  if (isElementInViewport(oneDiv)) str = "第一個div在可見區域,";
  if (isElementInViewport(twoDiv)) str = str + "第二個div在可見區域";
  show.innerHTML = str;
}
</script>
</head>
<body>
<div id="one">螞蟻部落一</div>
<div id="two">螞蟻部落二</div>
<div id="show"></div>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。

相關閱讀:

(1).getBoundingClientRect()可以參閱js getBoundingClientRect()一章節。

(2).innerHeight可以參閱window.innerHeight一章節。

(3).clientWidth可以參閱clientWidth一章節。

(4).clientHeight可以參閱clientHeight一章節。

(5).innerHTML可以參閱innerHTML一章節。

相關文章