我正在使用 easlejs + phonegap 开发 HTML5 游戏,并且遇到了每次在画布上单击/触摸/鼠标按下时屏幕闪烁的问题。
下面是我创建的用于测试问题并查看它是否与 easlejs 相关的非常简单的代码。正如您从代码中看到的那样,它与 easlejs 无关,只是一个 html5/phonegap 问题。
你可以看到我也尝试了没有选择的 CSS 样式,但没有运气。
<!doctype html>
<html>
<head>
<title></title>
<style type="text/css">
#canvas
{
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
</style>
</head>
<body>
<canvas id="canvas" width="320" height="480"></canvas>
<script type="text/javascript">
var canvas = document.getElementById("canvas");
canvas.addEventListener("mousedown", function(e)
{
var ctx = canvas.getContext("2d");
var x = Math.random() * 320;
var y = Math.random() * 480;
var w = Math.random() * 100;
var h = Math.random() * 100;
ctx.fillStyle = "#FF0000";
ctx.fillRect(x,y,w,h);
}, false);
</script>
</body>
</html>