画布图像无法在 Chrome 中渲染(适用于 FF4 和 IE9)
我很困惑。对于我的一生,我不知道为什么这在 Chrome 中不起作用。您可以在此处查看代码:
http://jsfiddle.net/corydorning/NgXSH/
当我拉动时这段代码在 FF 或 IE9 中运行得很好。您会注意到,fiddle 可以在 Chrome 中与渲染的元素一起工作,但它不能在 fiddle 之外工作。
非常感谢任何帮助。这是我第一次尝试画布。
I'm stumped. For the life of me, i have no idea why this is not working in Chrome. You can see the code here:
http://jsfiddle.net/corydorning/NgXSH/
When i pull this code up in FF or IE9 it works great. You'll notice that the fiddle WILL work in Chrome with the rendered element, but it DOES NOT work outside of fiddle.
Any help is greatly appreciated. This is my first attempt with canvas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题似乎是您没有等待原始图像元素加载。如果你稍微改变一下,它就可以正常工作:
The problem appears to be that you're not waiting for the original image element to get loaded. If you change it around a little, it works fine:
如果你有很多 img.onload ,那么使用 img.onload 可能会很困难。在 chrome 中等待图像加载的一个简单方法是使用 :
而不是
$(window).load 实际上是在等待所有图像加载。
它非常适合在画布中使用图像。
(也可在 firefow 和 IE 中工作)
It could be hard to use img.onload if you have plenty of them. An easy way in chrome to wait for image loading is to use :
instead of
as $(window).load is actually waiting for all image to be loaded.
It's work perfecly for using the image in the canvas.
(work also in firefow and IE)