Google Chrome中的HTML5画布和z-index问题

当我们将z索引应用于位置固定的画布时,停止它会导致chrome渲染所有位置正确固定的其他元素仅当画布的大小大于256X256 px时才会发生这种情况。

用固定的div包裹h1和canvas并解决问题-

<div id = 'fixcontainer'>
   <h1>Test Title</h1>
   <canvas id = "backgroundCanvas" width = "1000" height = "300"></canvas>
</div>

以下是CSS-

h1{
   position: fixed;
}
body{
   height: 1500px;
}
canvas{
   position: fixed; z-index: -10;
}
猜你喜欢