diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
commit | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch) | |
tree | a9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/glossary/canvas | |
parent | 074785cea106179cb3305637055ab0a009ca74f2 (diff) | |
download | translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2 translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip |
initial commit
Diffstat (limited to 'files/zh-tw/glossary/canvas')
-rw-r--r-- | files/zh-tw/glossary/canvas/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/canvas/index.html b/files/zh-tw/glossary/canvas/index.html new file mode 100644 index 0000000000..f28d6a36af --- /dev/null +++ b/files/zh-tw/glossary/canvas/index.html @@ -0,0 +1,34 @@ +--- +title: Canvas +slug: Glossary/Canvas +tags: + - HTML + - JavaScript +translation_of: Glossary/Canvas +--- +<article class="text-content" id="wikiArticle"> +<p>一個 {{Glossary("HTML")}} <em>{{HTMLElement("canvas")}}</em> 元素提供一個空的圖區使特定的 {{Glossary("JavaScript")}} {{Glossary("API","APIs")}} 可以在上面繪圖(像是 Canvas 2D 或 {{Glossary("WebGL")}}).</p> + +<h2 id="了解更多">了解更多</h2> + +<h3 id="常規知識">常規知識</h3> + +<ul> + <li>{{Interwiki("wikipedia", "Canvas element", "Canvas")}} 維基百科</li> +</ul> + +<h3 id="學習資源">學習資源</h3> + +<ul> + <li><a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Canvas_tutorial">The Canvas tutorial on MDN</a></li> +</ul> + +<h3 id="技術參考">技術參考</h3> + +<ul> + <li>The HTML {{HTMLElement("canvas")}} element on MDN</li> + <li><a href="https://developer.mozilla.org/en-US/docs/HTML/Canvas">The Canvas general documentation on MDN</a></li> + <li>{{domxref("CanvasRenderingContext2D")}}: The canvas 2D drawing API</li> + <li><a href="http://www.w3.org/TR/2dcontext/" rel="external">The Canvas 2D API specification</a></li> +</ul> +</article> |