aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/webglcontextevent/index.html
blob: 394341191ec9d30fc0984e61e1a4c8023455714f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
title: WebGLContextEvent
slug: Web/API/WebGLContextEvent
translation_of: Web/API/WebGLContextEvent
---
<div>{{APIRef("WebGL")}}</div>

<p><strong>WebContextEvent</strong> 接口属于 <a href="/en-US/docs/Web/API/WebGL_API">WebGL API</a> 的一部分,同时也是生成用来对 WebGL 渲染上下文作响应的事件接口。</p>

<h2 id="继承">继承</h2>

<p><em><em>此接口从它的父接口 {{domxref("Event")}}继承属性和方法。</em></em></p>

<p>{{InheritanceDiagram}}</p>

<h2 id="属性">属性</h2>

<p><em><em>此接口从它的父接口 {{domxref("Event")}}继承属性。</em></em></p>

<dl>
 <dt>{{domxref("WebGLContextEvent.statusMessage")}}</dt>
 <dd>一个包含事件额外信息的只读属性。</dd>
</dl>

<h2 id="方法">方法</h2>

<p><em>此接口本身并没有定义任何方法,而是<em>从它的父接口 {{domxref("Event")}}继承方法。</em></em></p>

<h2 id="示例">示例</h2>

<p>使用 {{domxref("WEBGL_lose_context")}} 插件, 你可以模拟 {{Event("webglcontextlost")}} 和 {{Event("webglcontextrestored")}} 事件:</p>

<pre class="brush: js">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 事件
</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">注释</th>
  </tr>
  <tr>
   <td>{{SpecName('WebGL', "#5.15", "WebGLContextEvent")}}</td>
   <td>{{Spec2('WebGL')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("api.WebGLContextEvent")}}</p>

<h2 id="相关内容">相关内容</h2>

<ul>
 <li>{{domxref("WebGLRenderingContext.isContextLost()")}}</li>
 <li>{{domxref("WEBGL_lose_context")}}, {{domxref("WEBGL_lose_context.loseContext()")}}, {{domxref("WEBGL_lose_context.restoreContext()")}}</li>
 <li>事件: <a href="/en-US/docs/Web/API/HTMLCanvasElement/webglcontextlost_event">webglcontextlost</a>, <a href="/en-US/docs/Web/API/HTMLCanvasElement/webglcontextrestored_event">webglcontextrestored</a>, <a href="/en-US/docs/Web/API/HTMLCanvasElement/webglcontextcreationerror_event">webglcontextcreationerror</a></li>
</ul>