Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 KineticJS 如何在图像加载后将图像发送到后面(项目在出现在前面之前被加载)。
我正在将背景 Kinetic.Image 和一些文本对象加载到图层上。
无论我按什么顺序调用,图像总是在前面,当我想要它在图层的后面时。
关于我应该如何做到这一点的任何建议?
谢谢
假设所有项目都在同一层中,您将执行以下操作:
image.moveToBottom(); layer.draw(); stage.draw(); //this one is not necessary really but threw it in just in case.
这将进入图像的 onload 功能(最后)。