--- title: WebGLContextEvent slug: Web/API/WebGLContextEvent translation_of: Web/API/WebGLContextEvent ---
WebContextEvent 接口属于 WebGL API 的一部分,同时也是生成用来对 WebGL 渲染上下文作响应的事件接口。
此接口从它的父接口 {{domxref("Event")}}继承属性和方法。
{{InheritanceDiagram}}
此接口从它的父接口 {{domxref("Event")}}继承属性。
此接口本身并没有定义任何方法,而是从它的父接口 {{domxref("Event")}}继承方法。
使用 {{domxref("WEBGL_lose_context")}} 插件, 你可以模拟 {{Event("webglcontextlost")}} 和 {{Event("webglcontextrestored")}} 事件:
var canvas = document.getElementById('canvas'); var gl = canvas.getContext('webgl'); canvas.addEventListener('webglcontextlost', function(e) { console.log(e); }, false); gl.getExtension('WEBGL_lose_context').loseContext(); // 记录了 "webglcontextlost" 类型的 WebGLContextEvent 事件
规范 | 状态 | 注释 |
---|---|---|
{{SpecName('WebGL', "#5.15", "WebGLContextEvent")}} | {{Spec2('WebGL')}} | Initial definition. |
{{Compat("api.WebGLContextEvent")}}