以下是如何让元素落入底层元素:
如果浏览器是 Chrome、Firefox、Safari、Blackberry 或 Android,但不是 IE 或 Opera,您可以使用指针事件告诉画布不要处理点击/触摸事件,然后点击/触摸将由底层元素处理. 所以,在 CSS 中:
#topCanvas{ pointer-events: none; }
但是在 IE 和 Opera 中,你必须很棘手:
- 隐藏顶部画布,
- 在底部元素上触发事件,
- 显示顶部画布。
这段代码展示了如何触发底层元素的事件:
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<style>
body{ background-color: ivory; }
#wrapper{ width:200; height:200;}
#bottom{ position:absolute; top:0; left:0; width:200; height:200; background-color:red; }
#top{ position:absolute; top:0; left:0; width:200; height:200; background-color:blue; }
</style>
<script>
$(function(){
$('#top').click(function (e) {
$('#top').hide();
$(document.elementFromPoint(e.clientX, e.clientY)).trigger("click");
$('#top').show();
});
$("#bottom").click(function(){ alert("bottom was clicked."); });
}); // end $(function(){});
</script>
</head>
<body>
<div id="wrapper">
<canvas id="bottom"></canvas>
<canvas id="top"></canvas>
</div>
</body>
</html>