javascript批量註冊事件處理函式程式碼例項

antzone發表於2017-04-12

本章節分享一段程式碼例項,它實現了批量註冊事件處理函式的功能。

此程式碼實現了為li元素批量註冊事件處理函式,實現了簡單的動畫效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body, div{
  margin: 0;
  padding: 0;
  font-size: 12px;
}
ul {
  list-style: none;
}
.odiv {
  position: relative;
}
.odiv ul li {
  width: 200px;
  height: 100px;
  background: yellow;
  margin-bottom: 20px;
}
</style>
<script>
window.onload = function () {
  var olist = document.getElementsByTagName('li');
  for (var index = 0; index < olist.length; index++) {
    olist[index].onmouseover = function () {
      startmov(this, 400);
    };
    olist[index].onmouseleave = function () {
      startmov(this, 200);
    };
    olist[index].timer = null;
  }
  function startmov(obj, itarget) {
    clearInterval(obj.timer);
    obj.timer = setInterval(function () {
      var speed = 0;
      speed = (itarget - obj.offsetWidth) / 8;
      speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);
      if (obj.offsetWidth == itarget) {
        clearInterval(obj.timer);
      }
      else {
        obj.style.width = obj.offsetWidth + speed + 'px';
      }
    }, 30);
  }
}
</script>
</head>
<body>
<div id="odiv" class="odiv">
  <ul>
    <li></li>
    <li></li>
    <li></li>
  </ul>
</div>
</body>
</html>

上面的程式碼實現了我們的要求,這裡具體就不介紹了。

原理非常的簡單,就是使用for迴圈挨個為li元素註冊事件處理函式。

實現過程建議參閱具有緩衝效果的側欄展開客服系統一章節。

相關文章