我发现将 z-index 应用于画布position:fixed
会导致 Chrome 停止渲染所有其他position:fixed
正确的元素。但是,只有当画布的大小大于 256x256px 时才会发生这种情况。
这是一个例子:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<style>
h1 { position: fixed; }
body { height: 2000px; }
canvas { position: fixed; z-index: -10; }
</style>
</head>
<body>
<h1>Test Title</h1>
<canvas id="backgroundCanvas" width="956" height="256"></canvas>
<script>
// draw basic shape
(function() {
var c = document.getElementById("backgroundCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.moveTo(0,100);
ctx.lineTo(0,0);
ctx.lineTo(100,0);
ctx.lineTo(1000,1000);
ctx.fillStyle = "rgb(117, 164, 68)";
ctx.fill();
ctx.closePath();
})();
</script>
</body>
</html>
如果您将其粘贴到 html 文档中并在 Chrome 中打开它,您应该会明白我的意思。
我的问题是,有人知道我可以解决这个问题的方法吗?