반응형
Canvas에 대해. Let’s Call It A Draw(ing Surface)
http://diveintohtml5.info/canvas.html#divingin
HTML 5 defines the <canvas> element as “a resolution-dependent bitmap canvas which can be used for rendering graphs, game graphics, or other visual images on the fly.” A canvas is a rectangle in your page where you can use JavaScript to draw anything you want.
IE | Firefox | Safari | Chrome | Opera | iPhone | Android |
---|---|---|---|---|---|---|
7.0+* | 3.0+ | 3.0+ | 3.0+ | 10.0+ | 1.0+ | 1.0+ |
* Internet Explorer 7 and 8 require the third-party explorercanvas library. Internet Explorer 9 supports <canvas> natively. |
So what does a canvas look like? Nothing, really. A <canvas>
element has no content and no border of its own.
반응형
'프로그래밍 > Web' 카테고리의 다른 글
[ASP] ASP에서 CODEPAGE (0) | 2013.07.01 |
---|---|
[APTANA] APTANA plugin - Syntax HighLighter (0) | 2013.06.28 |
gumby2-backbone-bootstrap (0) | 2013.06.24 |
Flatdoc — Simple websites for open source projects (0) | 2013.06.24 |
parseURI — Split any URL into logical parts (0) | 2013.06.20 |