方向鍵控制元素移動程式碼例項

antzone發表於2017-04-12

本章節分享一段程式碼例項,它實現了使用方向鍵控制元素移動的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0;
  padding: 0;
}
.small {
  position: absolute;
}
.posi {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 20px;
}
.small {
  left: 100px;
  top: 200px;
  width:100px;
  height:100px;
  background:#ccc;
}
</style>
</head>
<body>
<div class="posi">
<div id="move" class="small"></div>
</div>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function () {
  $(document).keydown(function (e) {
    switch (e.which) {
      case 37: $('.small').css('left', '-=10');
        break;
      case 38: $('.small').css('top', '-=10');
        break;
      case 39: $('.small').css('left', '+=10');
        break;
      case 40: $('.small').css('top', '+=10');
        break;
    }
  });
})
</script>
</body>
</html>

上面的程式碼實現了我們的要求,程式碼非常簡單,更多內容參閱相關閱讀

相關閱讀:

(1).keydown事件可以參閱jQuery keydown事件一章節。

(2).which可以參閱jQuery event.which一章節。

(3).switch語句可以參閱javascript switch語句一章節。

相關文章