--- title: 'HTMLCanvasElement: webglcontextlost event' slug: Web/API/HTMLCanvasElement/webglcontextlost_event translation_of: Web/API/HTMLCanvasElement/webglcontextlost_event ---
如果浏览器检测到与 {{domxref("WebGLRenderingContext")}}对象关联的图形缓冲区已丢失,则会触发WebGL API 中的webglcontextlost
事件.
冒泡 | Yes |
---|---|
可取消 | Yes |
继承 | {{domxref("WebGLContextEvent")}} |
事件处理程序属性 | none |
在 {{domxref("WEBGL_lose_context")}} 扩展的帮助下,您可以模拟 webglcontextlost
事件:
const canvas = document.getElementById('canvas');
const gl = canvas.getContext('webgl');
canvas.addEventListener('webglcontextlost', (event) => {
console.log(event);
});
//WEBGL_lose_context是webgl是属于 WebGLAPI 的一个扩展API,它提供一组方法用来模拟一个 WebGLRenderingContext
上下文的丢失和恢复。
gl.getExtension('WEBGL_lose_context').loseContext();
// "webglcontextlost" event is logged.
Specification | Status | Comment |
---|---|---|
{{SpecName('WebGL', '#5.15.2', 'webglcontextlost')}} | {{Spec2('WebGL')}} | Initial definition. |
{{Compat("api.HTMLCanvasElement.webglcontextlost_event")}}