没有绝对的多层画布怎么样?
大家好 我试图创建一个多层画布,我想出了类似的东西
<canvas class="canv" id="fight_layer1" width="680" height="381" style="position:relative;left:0;top:0;z-index:0">
我不能使用绝对,如果我将页面包含在另一页上,它会弄乱图层,除了这个之外还有其他方法吗,:)
Hello everyone
Im trying to create a multilayered canvas and what i came up with was something like
<canvas class="canv" id="fight_layer1" width="680" height="381" style="position:relative;left:0;top:0;z-index:0">
I can't use the absolute it messes up the layers if im including the page on another one, is there any other way than this one, :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将所有画布标签以绝对定位方式放置在 DIV 内部,然后它们在 DIV 内部相对定位。
另外,对于多层画布,请参阅此脚本(可能有用):
http://code.google.com/p/multi-layer-canvas/
Try to place all your canvas tags inside of the DIV with absolute positioning, then they relatively position inside of it.
Also for multi layer canvas see this script (could be useful):
http://code.google.com/p/multi-layer-canvas/