首頁 > web前端 > H5教程 > 主體

HTML5 Canvas概述_html5教學技巧

WBOY
發布: 2016-05-16 15:51:21
原創
1379 人瀏覽過

是一個新的HTML元素,這個元素可以被Script語言(通常是JavaScript)用來繪製圖形。例如可以用它來畫圖、合成圖象、或做簡單的(和不那麼簡單的)動畫。右面的圖象展示了一些的應用範例,我們將會在此教程中看到他們的實作。

最早在蘋果公司(Apple)的Mac OS X Dashboard上被引入,而後被應用於Safari。基於Gecko1.8的瀏覽器,例如Firefox 1.5,也支援這個新元素。元素是WhatWG Web applications 1.0也就是大家都知道的HTML 5標準規範的一部分。

在本教程中,我將試著講述如何在你自己的網頁中使用元素。提供的範例應該會給你些清晰概念,也就是用能做些什麼的。這些範例也可作為你應用的起點。

開始使用之前
用元素並不難,只要你有HTML和 JavaScript的基礎知識。

如上所述,並不是所有現代瀏覽器都支援元素,所以你需要Firefox 1.5或更新版本、或其他基於Gecko的瀏覽器例如Opera 9、或最近版本的Safari才能看到所有範例的動作。

元素

Let's start this tutorial by looking at the element itself.
讓我們從元素的定義開始。

<canvas id="tutorial" width="150" height="150"></canvas>
登入後複製

This looks a lot like the HTML5 Canvas概述_html5教學技巧 element, the only difference is that it doesn't have the src and alt<* >看起來很像HTML5 Canvas概述_html5教學技巧,唯一不同就是它不含 srcalt 屬性。 The element has only two attributes - width and height. These 是兩個屬性,widthheight,兩個都是可選的,並且都可以DOM 或CSS 來設定。 When no width and height attributes are specified, the canvas will initially be 300 pixels wide and 150 pixels high.如果不指定width 和height,預設的是寬🎜> 高150像素。 The element can be sized arbitrarily by CSS, but during rendering the image is scaled to fit its layout size.   (If your  renderings seem distorted, try specifying your width and yourcan wtrileh The id attribute isn't specific to the

element but is one of default HTML attributes which can be applied to (almost) everyke elst >class for instance). It's always a good idea to supply an id because this makes it much easier to identify it in our script.id  屬性不是 🎜>專屬的,就像標準的HTLM標籤一樣,任何一個HTML元素都可以指定其 id 值。一般,為元素指定
id 是個不錯的主意,這樣使得在腳本中應用更加方便。 The element can be styled just like any normal image (margin, border, background, etc). These rules however don't affect the actual dra on the candra how this is done later in this tutorial. When no styling rules are applied to the canvas it will initially be fully transparent. 元素可以像普通圖片一樣指定其樣式(邊距,邊框,背景等等)。然而這些樣式並不會對canvas實際產生的圖像產生什麼影響。下面我們會看到如何套用樣式。如果不指定樣式,canvas預設是全透明的。

替用內容 Because the

element is still relatively new and isn't implemented in some browsers (such as Firefox 1.0 and Internet Explorer), we need a means of providing fallback content when a browser doesn' t support the element.

因为 相对较新,有些浏览器并没实现,如Firefox 1.0 和 Internet Explorer,所以我们需要为那些不支持canvas的浏览器提供替用显示内容。

Luckily this is very straightforward: we just provide alternative content inside the canvas element. Browsers who don't support it will ignore the element completely and render the fallback content, others will just render the canvas normally.
For instance we could provide a text description of the canvas content or provide a static image of the dynamically rendered content. This can look something like this:

我们只需要直接在canvas元素内插入替用内容即可。不支持canvas的浏览器会忽略canvas元素而直接渲染替用内容,而支持的浏览器则会正常地渲染canvas。例如,我们可以把一些文字或图片填入canvas内,作为替用内容:

<canvas id="stockGraph" width="150" height="150">
  current stock price: $3.15 +0.15
</canvas>

<canvas id="clock" width="150" height="150">
  <img src="images/clock.png" width="150" height="150"/>
</canvas>
登入後複製

结束标签 是必须的

In the Apple Safari implementation, is an element implemented in much the same way is; it does not have an end tag. However, for to have widespread use on the web, some facility for fallback content must be provided. Therefore, Mozilla's implementation requires an end tag ().

在Apple Safari里,的实现跟很相似,它并不没有结束标签。然而,为了使 能在web的世界里广泛适用,需要给替用内容提供一个容身之所,因此,在Mozilla的实现里结束标签()是必须的。

If fallback content is not needed, a simple will be fully compatible with both Safari and Mozilla -- Safari will simply ignore the end tag.

如果没有替用内容, 对 Safari 和 Mozilla 是完全兼容的—— Safari 会简单地忽略结束标签。

If fallback content is desired, some CSS tricks must be employed to mask the fallback content from Safari (which should render just the canvas), and also to mask the CSS tricks themselves from IE (which should render the fallback content).

如果有替用内容,那么可以用一些 CSS 技巧来为并且仅为 Safari 隐藏替用内容,因为那些替用内容是需要在 IE 里显示但不需要在 Safari 里显示。

渲染上下文(Rendering Context)

creates a fixed size drawing surface that exposes one or more rendering contexts, which are used to create and manipulate the content shown. We'll focus on the 2D rendering context, which is the only currently defined rendering context. In the future, other contexts may provide different types of rendering; for example, it is likely that a 3D context based on OpenGL ES will be added.

创建的固定尺寸的绘图画面开放了一个或多个渲染上下文(rendering context),我们可以通过它们来控制要显示的内容。我们专注于2D 渲染上,这也是目前唯一的选择,可能在将来会添加基于OpenGL ES 的 3D 上下文。

The is initially blank, and to display something a script first needs to access the rendering context and draw on it. The canvas element has a DOM method called getContext, used to obtain the rendering context and its drawing functions. getContext() takes one parameter, the type of context.

初始化是空白的,要在上面用脚本画图首先需要其渲染上下文(rendering context),它可以通过 canvas 元素对象的 getContext 方法来获取,同时得到的还有一些画图用的函数。getContext() 接受一个用于描述其类型的值作为参数。

var canvas = document.getElementById('tutorial');
var ctx = canvas.getContext('2d');
登入後複製

In the first line we retrieve the canvas DOM node using the getElementById method. We can then access the drawing context using the getContext method.

上面第一行通过 getElementById 方法取得 canvas 对象的 DOM 节点。然后通过其 getContext 方法取得其画图操作上下文。

检查浏览器的支持

The fallback content is displayed in browsers which do not support ; scripts can also check for support when they execute. This can easily be done by testing for the getContext method. Our code snippet from above becomes something like this:

除了在那些不支持 的浏览器上显示替用内容,还可以通过脚本的方式来检查浏览器是否支持 canvas 。方法很简单,判断 getContext 是否存在即可。

var canvas = document.getElementById('tutorial');
if (canvas.getContext){
  var ctx = canvas.getContext('2d');
  // drawing code here
} else {
  // canvas-unsupported code here
}
登入後複製

代码模板

Here is a minimalistic template, which we'll be using as a starting point for later examples. You can download this file to work with on your system.

我们会用下面这个最简化的代码模板来(后续的示例需要用到)作为开始,你可以 下载文件 到本地备用。


  
    Canvas tutorial
    
    
  
  
    <canvas id="tutorial" width="150" height="150"></canvas>
  

登入後複製

If you look at the script you'll see I've made a function called draw, which will get executed once the page finishes loading (via the onload attribute on the body tag). This function could also have been called from a setTimeout, setInterval, or any other event handler function just as long the page has been loaded first.

细心的你会发现我准备了一个名为 draw 的函数,它会在页面装载完毕之后执行一次(通过设置 body 标签的 onload 属性),它当然也可以在 setTimeout,setInterval,或者其他事件处理函数中被调用。

一个简单的例子

To start off, here's a simple example that draws two intersecting rectangles, one of which has alpha transparency. We'll explore how this works in more detail in later examples.

作为开始,来一个简单的吧——绘制两个交错的矩形,其中一个是有alpha透明效果。我们会在后面的示例中详细的让你了解它是如何运作的。

<html>
 <head>
  <script type="application/x-javascript">
    function draw() {
      var canvas = document.getElementById("canvas");
      if (canvas.getContext) {
        var ctx = canvas.getContext("2d");

        ctx.fillStyle = "rgb(200,0,0)";
        ctx.fillRect (10, 10, 55, 50);

        ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
        ctx.fillRect (30, 30, 55, 50);
      }
    }
  </script>
 </head>
 <body onload="draw();">
   <canvas id="canvas" width="150" height="150"></canvas>
 </body>
</html>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!