HTML5 界面元素 Canvas 参考手册
HTML5 界面元素 Canvas 参考手册
太阳火神的美丽人生 (http://blog.csdn.net/opengl_es)
本文遵循“署名-非商业用途-保持一致”创作公用协议
HTML5 界面元素 Canvas 参考手册
HTML Canvas Reference
描述
Description
The HTML5 <canvas> tag is used to draw graphics, on the fly, via scripting (usually JavaScript).
However, the <canvas> element has no drawing abilities of its own (it is only a container for graphics) - you must use a script to actually draw the graphics.
The getContext() method returns an object that provides methods and properties for drawing on the canvas.
This reference will cover the properties and methods of the getContext("2d") object, which can be used to draw text, lines, boxes, circles, and more - on the canvas.
浏览器支持
Browser Support
Internet Explorer 9, Firefox, Opera, Chrome, and Safari support <canvas> and its properties and methods.
Note: Internet Explorer 8 and earlier versions, do not support the <canvas> element.
颜色、样式和阴影
Colors, Styles, and Shadows
Property | Description |
Sets or returns the color, gradient, or pattern used to fill the drawing | |
Sets or returns the color, gradient, or pattern used for strokes | |
Sets or returns the color to use for shadows | |
Sets or returns the blur level for shadows | |
Sets or returns the horizontal distance of the shadow from the shape | |
Sets or returns the vertical distance of the shadow from the shape |
Method | Description |
Creates a linear gradient (to use on canvas content) | |
Repeats a specified element in the specified direction | |
Creates a radial/circular gradient (to use on canvas content) | |
Specifies the colors and stop positions in a gradient object |
线条样式
Line Styles
Property | Description |
Sets or returns the style of the end caps for a line | |
Sets or returns the type of corner created, when two lines meet | |
Sets or returns the current line width | |
Sets or returns the maximum miter length |
矩形
Rectangles
Method | Description |
Creates a rectangle | |
Draws a "filled" rectangle | |
Draws a rectangle (no fill) | |
Clears the specified pixels within a given rectangle |
路径
Paths
Method | Description |
Fills the current drawing (path) | |
Actually draws the path you have defined | |
Begins a path, or resets the current path | |
Moves the path to the specified point in the canvas, without creating a line | |
Creates a path from the current point back to the starting point | |
Adds a new point and creates a line from that point to the last specified point in the canvas | |
Clips a region of any shape and size from the original canvas | |
Creates a quadratic Bézier curve | |
Creates a cubic Bézier curve | |
Creates an arc/curve (used to create circles, or parts of circles) | |
Creates an arc/curve between two tangents | |
Returns true if the specified point is in the current path, otherwise false |
转换
Transformations
Method | Description |
Scales the current drawing bigger or smaller | |
Rotates the current drawing | |
Remaps the (0,0) position on the canvas | |
Replaces the current transformation matrix for the drawing | |
Resets the current transform to the identity matrix. Then runs transform() |
文本
Text
Property | Description |
Sets or returns the current font properties for text content | |
Sets or returns the current alignment for text content | |
Sets or returns the current text baseline used when drawing text |
Method | Description |
Draws "filled" text on the canvas | |
Draws text on the canvas (no fill) | |
Returns an object that contains the width of the specified text |
图像绘制
Image Drawing
Method | Description |
Draws an image, canvas, or video onto the canvas |
像素操作
Pixel Manipulation
Property | Description |
Returns the width of an ImageData object | |
Returns the height of an ImageData object | |
Returns an object that contains image data of a specified ImageData object |
Method | Description |
Creates a new, blank ImageData object | |
Returns an ImageData object that copies the pixel data for the specified rectangle on a canvas | |
Puts the image data (from a specified ImageData object) back onto the canvas |
混合
Compositing
Property | Description |
Sets or returns the current alpha or transparency value of the drawing | |
Sets or returns how a new image are drawn onto an existing image |
其它
Other
Method | Description |
save() | Saves the state of the current context |
restore() | Returns previously saved path state and attributes |
createEvent() |
|
getContext() |
|
toDataURL() |
|
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。