清除 HTML5 画布中的笔划路径(循环内)

发布于 2024-10-18 22:58:24 字数 403 浏览 2 评论 0原文

我正在努力清理画布以获取 2 个简单的笔划路径。

示例: http://dl.dropbox.com/u/104380/canvas -test-case.html

...我正在使用

requestAnimFrame()  

Paul Irish 的新版本。但我认为这不会对 Canvas 上下文产生任何影响,而不是 setInterval。据我所知,我也正确使用了 beginPath() 并在渲染循环内调用 getContext() 。

...问题是,原来的两笔画不清晰!

有什么想法吗?

I'm struggling to clear a canvas for 2 simple stroke paths.

Example: http://dl.dropbox.com/u/104380/canvas-test-case.html

... I'm using the new

requestAnimFrame()  

by Paul Irish. But I don't think this should have any effect on Canvas contexts, as opposed to a setInterval. As far as I know, I'm also correctly using beginPath() and recalling getContext() inside the render loop.

... problem is, the two original strokes are not clearing!

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笑百媚生 2024-10-25 22:58:24

这条线...

context.clearRect(0,0,canvas.width,canvas.height);

应该是

context.clearRect(0,0,canvas[0].width,canvas[0].height);

this line...

context.clearRect(0,0,canvas.width,canvas.height);

should be

context.clearRect(0,0,canvas[0].width,canvas[0].height);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文