How do I know when HTML5 Canvas#39; Rendering is Finished?(我如何知道 HTML5 Canvas 的渲染何时完成?)
问题描述
html:
<canvas id="cnv" width="786" height="1113">
js:
var img = new Image(),
cnv = document.getElementById('cnv');
var context = cnv.getContext('2d');
img.onload = function () {
context.drawImage(img, 0, 0, 786, 1113);
alert('finished drawing');
}
img.src = 'https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/logo_white_fe6da1ec.png';
http://jsfiddle.net/FxrSa/14/
我想在画布完成渲染后显示警报.但是在绘制图像之前会显示警报.
I want to show the alert after the canvas finished his rendering. But the alert show before the image is drawn.
如何等待 GUI 线程完成他的渲染?
How can I wait for the GUI thread to finish his rendering?
推荐答案
Canvas drawImage
是同步的.甚至,真正同步.
Canvas drawImage
is synchronous. And even, really synchronous.
您的问题是 alert()
正在阻塞,甚至是真正阻塞.
Your problem is that alert()
is blocking, and even really blocking.
我的意思是它不仅会阻止 js 执行,还会阻止页面渲染.所以浏览器已经在你的画布上绘制了你的图像,但是当你调用 alert()
时还没有显示它.
By this I mean it does not only block the js execution, it also blocks the page rendering. So the browser has painted your image on your canvas, but didn't display it yet when you called alert()
.
应始终避免使用 alert
并将其替换为普通的 DOM 元素.
One should always avoid alert
and replace it with normal DOM elements.
Ps:这是一个证据,您的图像确实已经绘制在画布上.
Ps: Here is a proof that your image is indeed already painted on the canvas.
这篇关于我如何知道 HTML5 Canvas 的渲染何时完成?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我如何知道 HTML5 Canvas 的渲染何时完成?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01