diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/webgl | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/webgl')
-rw-r--r-- | files/zh-cn/glossary/webgl/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/webgl/index.html b/files/zh-cn/glossary/webgl/index.html new file mode 100644 index 0000000000..189bcb593d --- /dev/null +++ b/files/zh-cn/glossary/webgl/index.html @@ -0,0 +1,34 @@ +--- +title: WebGL +slug: Glossary/WebGL +tags: + - WebGL + - Web图像 + - 术语表 + - 编程脚本 + - 高级 +translation_of: Glossary/WebGL +--- +<p><strong>WebGL</strong> (<em>Web图形库</em>) 是一个用于绘制交互式2D/3D图形的 {{Glossary("JavaScript")}} {{Glossary("API")}} ,基于 {{Glossary("OpenGL")}} ES 2.0 。</p> + +<p><a href="https://www.khronos.org/">Khronos Group</a> 负责WebGL的维护。</p> + +<p>你可以在 {{Glossary("HTML")}} {{HTMLElement("canvas")}} 元素中调用WebGL。</p> + +<p>目前所有主流 {{Glossary("Browser","浏览器")}} 都支持WebGL,即便如此,WebGL是否可用还是取决于硬件设备等其他因素(比如GPU是否支持WebGL)。</p> + +<h2 id="了解更多">了解更多</h2> + +<h3 id="常识" style="line-height: 24px;">常识</h3> + +<ul> + <li>维基百科上的 {{Interwiki("wikipedia", "WebGL")}}</li> + <li><a href="http://get.webgl.org/">检查你的设备是否支持WebGL</a></li> +</ul> + +<h3 id="技术信息" style="line-height: 24px;">技术信息</h3> + +<ul> + <li><a href="https://developer.mozilla.org/zh-CN/docs/Web/API/WebGL_API">MDN上的WebGL参考资料</a></li> + <li><a href="http://caniuse.com/#feat=webgl">WebGL支持列表</a></li> +</ul> |