• fixed IE8 issue with the HTML element named Raphael
[raphael] / reference.html
1 <!DOCTYPE html>
2 <html lang="en">
3     <head>
4         <title>Raphaël Reference</title>
5         <meta http-equiv="content-language" content="en">
6         <meta charset="utf-8">
7         <meta name="author" content="Dmitry Baranovskiy">
8         <meta name="description" content="Vector Graphics JavaScript Library">
9         <meta name="keywords" content="JavaScript Library, Raphael, SVG, VML">
10         <meta name="viewport" content="width=450; user-scalable=no">
11         <link rel="apple-touch-icon-precomposed" href="/Raphael.png"/>
12         <link rel="shortcut icon" href="/favicon16.png" type="image/x-icon">
13         <link rel="stylesheet" href="site.css" type="text/css">
14         <link rel="shortcut icon" href="/favicon16.png" type="image/x-icon">
15     </head>
16     <body class="raphael" id="reference">
17         <div id="header">
18             <h1><span>&nbsp;</span>Raphaël—JavaScript Library</h1>
19         </div>
20         <div id="content">
21             <div id="top">&nbsp;</div>
22                     <div id="column-1">
23                         <h2>Main Function</h2>
24                         <h3 id="Raphael">
25                             Raphael
26                         </h3>
27                         <p>
28                             Creates a canvas object on which to draw. You must do this first, as all future calls to drawing methods from this instance will be bound to this canvas.
29                         </p>
30                         <h4>Parameters</h4>
31                         <ol>
32                             <li>container <em>HTMLElement</em> or <em>string</em></li>
33                             <li>width <em>number</em></li>
34                             <li>height <em>number</em></li>
35                         </ol>
36                         <p>or</p>
37                         <ol>
38                             <li>x <em>number</em></li>
39                             <li>y <em>number</em></li>
40                             <li>width <em>number</em></li>
41                             <li>height <em>number</em></li>
42                         </ol>
43                         <p>or</p>
44                         <ol>
45                             <li>all <em>array</em> (first 3 or 4 elements in the array are equal to [containerID, width, height] or [x, y, width, height]. The rest are element descriptions in format {type: type, &lt;attributes>})</li>
46                         </ol>
47                         <h4>Usage</h4>
48                         <pre class="javascript code"><code>// Each of the following examples create a canvas that is 320px wide by 200px high
49 // Canvas is created at the viewport’s 10,50 coordinate
50 var paper = Raphael(10, 50, 320, 200);
51 // Canvas is created at the top left corner of the #notepad element
52 // (or its top right corner in dir="rtl" elements)
53 var paper = Raphael(document.getElementById("notepad"), 320, 200);
54 // Same as above
55 var paper = Raphael("notepad", 320, 200);
56 // Image dump
57 var set = Raphael(["notepad", 320, 200, {
58     type: "rect",
59     x: 10,
60     y: 10,
61     width: 25,
62     height: 25,
63     stroke: "#f00"
64 }, {
65     type: "text",
66     x: 30,
67     y: 40,
68     text: "Dump"
69 }]);</code></pre>
70                         <h3 id="circle">
71                             circle
72                         </h3>
73                         <div class="sample" id="circle-sample"></div>
74                         <p>
75                             Draws a circle.
76                         </p>
77                         <h4>Parameters</h4>
78                         <ol>
79                             <li>x <em>number</em> X coordinate of the centre</li>
80                             <li>y <em>number</em> Y coordinate of the centre</li>
81                             <li>r <em>number</em> radius</li>
82                         </ol>
83                         <h4>Usage</h4>
84                         <pre class="javascript code"><code>var c = paper.circle(50, 50, 40);</code></pre>
85                         <h3 id="rect">
86                             rect
87                         </h3>
88                         <div class="sample" id="rect-sample"></div>
89                         <p>
90                             Draws a rectangle.
91                         </p>
92                         <h4>Parameters</h4>
93                         <ol>
94                             <li>x <em>number</em> X coordinate of top left corner</li>
95                             <li>y <em>number</em> Y coordinate of top left corner</li>
96                             <li>width <em>number</em></li>
97                             <li>height <em>number</em></li>
98                             <li>r <em>number</em> [optional] radius for rounded corners, default is 0</li>
99                         </ol>
100                         <h4>Usage</h4>
101                         <pre class="javascript code"><code>// regular rectangle</code>
102 <code>var c = paper.rect(10, 10, 50, 50);</code>
103 <code>// rectangle with rounded corners</code>
104 <code>var c = paper.rect(40, 40, 50, 50, 10);</code></pre>
105                         <h3 id="ellipse">
106                             ellipse
107                         </h3>
108                         <div class="sample" id="ellipse-sample"></div>
109                         <p>
110                             Draws an ellipse.
111                         </p>
112                         <h4>Parameters</h4>
113                         <ol>
114                             <li>x <em>number</em> X coordinate of the centre</li>
115                             <li>y <em>number</em> X coordinate of the centre</li>
116                             <li>rx <em>number</em> Horisontal radius</li>
117                             <li>ry <em>number</em> Vertical radius</li>
118                         </ol>
119                         <h4>Usage</h4>
120                         <pre class="javascript code"><code>var c = paper.ellipse(50, 50, 40, 20);</code></pre>
121                         <h3 id="image">
122                             image
123                         </h3>
124                         <div class="sample" id="image-sample"></div>
125                         <p>
126                             Embeds an image into the SVG/VML canvas.
127                         </p>
128                         <h4>Parameters</h4>
129                         <ol>
130                             <li>src <em>string</em> URI of the source image</li>
131                             <li>x <em>number</em> X coordinate position</li>
132                             <li>y <em>number</em> Y coordinate position</li>
133                             <li>width <em>number</em> Width of the image</li>
134                             <li>height <em>number</em> Height of the image</li>
135                         </ol>
136                         <h4>Usage</h4>
137                         <pre class="javascript code"><code>var c = paper.image("apple.png", 10, 10, 80, 80);</code></pre>
138                         <h3 id="set">
139                             set
140                         </h3>
141                         <div class="sample" id="set-sample"></div>
142                         <p>
143                             Creates array-like object to keep and operate couple of elements at once. Warning: it doesn’t create any elements for itself in the page.
144                         </p>
145                         <h4>Usage</h4>
146                         <pre class="javascript code"><code>var st = paper.set();</code>
147 <code>st.push(
148     paper.circle(10, 10, 5),
149     paper.circle(30, 10, 5)
150 );</code>
151 <code>st.attr({fill: "red"});</code></pre>
152                         <h3 id="text">
153                             text
154                         </h3>
155                         <div class="sample" id="text-sample"></div>
156                         <p>
157                             Draws a text string. If you need line breaks, put “\n” in the string.
158                         </p>
159                         <h4>Parameters</h4>
160                         <ol>
161                             <li>x <em>number</em> X coordinate position.</li>
162                             <li>y <em>number</em> Y coordinate position.</li>
163                             <li>text <em>string</em> The text string to draw.</li>
164                         </ol>
165                         <h4>Usage</h4>
166                         <pre class="javascript code"><code>var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!");</code></pre>
167                         <h3 id="path">
168                             path
169                         </h3>
170                         <div class="sample" id="path-sample"></div>
171                         <p>
172                             Creates a path element by given path data string.
173                         </p>
174                         <h4>Parameters</h4>
175                         <ol>
176                             <li>pathString <em>string</em> [optional] Path data in <a href="http://www.w3.org/TR/SVG/paths.html#PathData" title="Details of a path's data attribute's format are described in the SVG specification.">SVG path string format</a>.</li>
177                         </ol>
178                         <h4>Usage</h4>
179                         <pre class="javascript code"><code>var c = paper.path("M10 10L90 90");
180 // draw a diagonal line:
181 // move to 10,10, line to 90,90</code></pre>
182                         <h3 id="clear">
183                             clear
184                         </h3>
185                         <p>
186                             Clears the canvas, i.e. removes all the elements.
187                         </p>
188                         <h4>Usage</h4>
189                         <pre class="javascript code"><code>var c = paper.path("M10 10L90 90");
190 paper.clear();</code></pre>
191                         <h2 id="Element">
192                             Element’s generic methods
193                         </h2>
194                         <p>
195                             Each object created on the canvas shares these same generic methods:
196                         </p>
197                         <h3 id="node">
198                             node
199                         </h3>
200                         <p>
201                             Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
202                         </p>
203                         <h4>Usage</h4>
204                         <pre class="javascript code"><code>// draw a circle at coordinate 10,10 with radius of 10
205 var c = paper.circle(10, 10, 10);
206 c.node.onclick = function () {
207     c.attr("fill", "red");
208 };</code></pre>
209                         <h3 id="paper">
210                             paper
211                         </h3>
212                         <p>
213                             Internal reference to “paper” where object drawn. Mainly for use in plugins and element extensions.
214                         </p>
215                         <h4>Usage</h4>
216                         <pre class="javascript code"><code>Raphael.el.cross = function () {
217     this.attr({fill: "red"});
218     this.paper.path("M10,10L50,50M50,10L10,50")
219         .attr({stroke: "red"});
220 }</code></pre>
221                         <h3 id="remove">
222                             remove
223                         </h3>
224                         <p>
225                             Removes element from the DOM. You can’t use it after this method call.
226                         </p>
227                         <h4>Usage</h4>
228                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
229 c.remove();</code></pre>
230                         <h3 id="hide">
231                             hide
232                         </h3>
233                         <p>
234                             Makes element invisible.
235                         </p>
236                         <h4>Usage</h4>
237                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
238 c.hide();</code></pre>
239                         <h3 id="show">
240                             show
241                         </h3>
242                         <p>
243                             Makes element visible.
244                         </p>
245                         <h4>Usage</h4>
246                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
247 c.show();</code></pre>
248                         <h3 id="rotate">
249                             rotate
250                         </h3>
251                         <p>
252                             Rotates the element by the given degree from its center point.
253                         </p>
254                         <h4>Parameters</h4>
255                         <ol>
256                             <li>degree <em>number</em> Degree of rotation (0 – 360°)</li>
257                             <li>isAbsolute <em>boolean</em> [optional] Specifies is degree is relative to previous position (<code>false</code>) or is it absolute angle (<code>true</code>)</li>
258                         </ol>
259                         <p>or</p>
260                         <ol>
261                             <li>degree <em>number</em> Degree of rotation (0 – 360°)</li>
262                             <li>cx <em>number</em> [optional] X coordinate of the origin of rotation</li>
263                             <li>cY <em>number</em> [optional] Y coordinate of the origin of rotation</li>
264                         </ol>
265                         <h4>Usage</h4>
266                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
267 c.rotate(45);        // rotation is relative
268 c.rotate(45, true);  // rotation is absolute</code></pre>
269                         <h3 id="translate">
270                             translate
271                         </h3>
272                         <p>
273                             Moves the element around the canvas by the given distances.
274                         </p>
275                         <h4>Parameters</h4>
276                         <ol>
277                             <li>dx <em>number</em> Pixels of translation by X axis</li>
278                             <li>dy <em>number</em> Pixels of translation by Y axis</li>
279                         </ol>
280                         <h4>Usage</h4>
281                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
282 // moves the circle 10&nbsp;px to the right and down
283 c.translate(10, 10);</code></pre>
284                         <h3 id="scale">
285                             scale
286                         </h3>
287                         <p>
288                             Resizes the element by the given multiplier.
289                         </p>
290                         <h4>Parameters</h4>
291                         <ol>
292                             <li>Xtimes <em>number</em> Amount to scale horizontally</li>
293                             <li>Ytimes <em>number</em> Amount to scale vertically</li>
294                             <li>centerX <em>number</em> [optional] X of the center of scaling, default is the center of the element</li>
295                             <li>centerY <em>number</em> [optional] Y of the center of scaling, default is the center of the element</li>
296                         </ol>
297                         <h4>Usage</h4>
298                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
299 // makes the circle 1.5 times larger
300 c.scale(1.5, 1.5);
301 // makes the circle half as wide, and 75% as high
302 c.scale(.5, .75);</code></pre>
303                         <h3 id="attr">
304                             attr
305                         </h3>
306                         <p>
307                             Sets the attributes of elements directly.
308                         </p>
309                         <h4>Parameters</h4>
310                         <ol>
311                             <li>attributeName <em>string</em></li>
312                             <li>value <em>string</em></li>
313                         </ol>
314                         <p>or</p>
315                         <ol>
316                             <li>params <em>object</em></li>
317                         </ol>
318                         <p>or</p>
319                         <ol>
320                             <li>attributeName <em>string</em> in this case method returns current value for given attribute name</li>
321                         </ol>
322                         <p>or</p>
323                         <ol>
324                             <li>attributeNames <em>array</em> in this case method returns array of current values for given attribute names</li>
325                         </ol>
326                         <p>or</p>
327                         <p>no parameters, in this case object containing all attributes will be returned</p>
328                         <h4>Possible parameters</h4>
329                         <p>Please refer to the <a href="http://www.w3.org/TR/SVG/" title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
330                         <ul>
331                             <li id="attr-clip-rect">clip-rect <em>string</em> comma or space separated values: x, y, width and height</li>
332                             <li id="attr-cx">cx <em>number</em></li>
333                             <li id="attr-cy">cy <em>number</em></li>
334                             <li id="attr-fill">
335                                 fill <em>colour</em> or <em>gradient</em>
336                                 <ul>
337                                     <li>linear gradient: “‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›”, example: “<samp>90-#fff-#000</samp>” – 90° gradient from white to black or “<samp>0-#fff-#f00:20-#000</samp>” – 0° gradient from white via red (at 20%) to black</li>
338                                     <li>radial gradient: “r[(‹fx›, ‹fy›)]‹colour›[-‹colour›[:‹offset›]]*-‹colour›”, example: “<samp>r#fff-#000</samp>” – gradient from white to black or “<samp>r(0.25, 0.75)#fff-#000</samp>” – gradient from white to black with focus point at 0.25, 0.75</li>
339                                     <li>Focus point coordinates are in 0..1 range</li>
340                                     <li>Radial gradients can only be applied to circles and ellipses</li>
341                                 </ul>
342                             </li>
343                             <li id="attr-fill-opacity">fill-opacity <em>number</em></li>
344                             <li id="attr-font">font <em>string</em></li>
345                             <li id="attr-font-family">font-family <em>string</em></li>
346                             <li id="attr-font-size">font-size <em>number</em></li>
347                             <li id="attr-font-weight">font-weight <em>string</em></li>
348                             <li id="attr-height">height <em>number</em></li>
349                             <li id="attr-opacity">opacity <em>number</em></li>
350                             <li id="attr-path">path <em>pathString</em> <a href="http://www.w3.org/TR/SVG/paths.html#PathData" title="Details of a path’s data attribute’s format are described in the SVG specification.">SVG path string format</a></li>
351                             <li id="attr-r">r <em>number</em></li>
352                             <li id="attr-rotation">rotation <em>number</em></li>
353                             <li id="attr-rx">rx <em>number</em></li>
354                             <li id="attr-ry">ry <em>number</em></li>
355                             <li id="attr-scale">scale <em>string</em> comma or space separated values: xtimes, ytimes, cx, cy. See: <a href="#scale">scale</a></li>
356                             <li id="attr-src">src <em>string</em> (URL)</li>
357                             <li id="attr-stroke">stroke <em>colour</em></li>
358                             <li id="attr-stroke-dasharray">stroke-dasharray <em>string</em> [“”, “<samp>-</samp>”, “<samp>.</samp>”, “<samp>-.</samp>”, “<samp>-..</samp>”, “<samp>. </samp>”, “<samp>- </samp>”, “<samp>--</samp>”, “<samp>-&nbsp;.</samp>”, “<samp>--.</samp>”, “<samp>--..</samp>”]</li>
359                             <li id="attr-stroke-linecap">stroke-linecap <em>string</em> [“<samp>butt</samp>”, “<samp>square</samp>”, “<samp>round</samp>”]</li>
360                             <li id="attr-stroke-linejoin">stroke-linejoin <em>string</em> [“<samp>bevel</samp>”, “<samp>round</samp>”, “<samp>miter</samp>”]</li>
361                             <li id="attr-stroke-miterlimit">stroke-miterlimit <em>number</em></li>
362                             <li id="attr-stroke-opacity">stroke-opacity <em>number</em></li>
363                             <li id="attr-stroke-width">stroke-width <em>number</em></li>
364                             <li id="attr-translation">translation <em>string</em> comma or space separated values: x and y</li>
365                             <li id="attr-width">width <em>number</em></li>
366                             <li id="attr-x">x <em>number</em></li>
367                             <li id="attr-y">y <em>number</em></li>
368                         </ul>
369                         <h4>Usage</h4>
370                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);
371 // using strings
372 c.attr("fill", "black");
373 // using params object
374 c.attr({fill: "#000", stroke: "#f00", opacity: 0.5});
375 c.attr({
376     fill: "90-#fff-#000",
377     "stroke-dasharray": "-..",
378     "clip-rect": "10, 10, 100, 100"
379 });</code></pre>
380                         <h3 id="animate">
381                             animate
382                         </h3>
383                         <p>
384                             Changes an attribute from its current value to its specified value in the given amount of milliseconds.
385                         </p>
386                         <h4>Parameters</h4>
387                         <ol>
388                             <li>newAttrs <em>object</em> A parameters object of the animation results. (Not all attributes can be animated.)</li>
389                             <li>ms <em>number</em> The duration of the animation, given in milliseconds.</li>
390                             <li>callback <em>function</em> [optional]</li>
391                         </ol>
392                         <p>or</p>
393                         <ol>
394                             <li>newAttrs <em>object</em> A parameters object of the animation results. (Not all attributes can be animated.)</li>
395                             <li>ms <em>number</em> The duration of the animation, given in milliseconds.</li>
396                             <li>easing <em>string</em> [“<samp>></samp>”, “<samp>&lt;</samp>”, “<samp>&lt;></samp>”, “<samp>backIn</samp>”, “<samp>backOut</samp>”, “<samp>bounce</samp>”, “<samp>elastic</samp>”] or <em>function</em> [optional]</li>
397                             <li>callback <em>function</em> [optional]</li>
398                         </ol>
399                         <h4>Attributes that can be animated</h4>
400                         <p>The <code>newAttrs</code> parameter accepts an object whose properties are the attributes to animate. However, not all attributes listed in the <code>attr</code> method reference can be animated. The following is a list of those properties that can be animated:</p>
401                         <ul>
402                             <li>clip-rect <em>string</em></li>
403                             <li>cx <em>number</em></li>
404                             <li>cy <em>number</em></li>
405                             <li>fill <em>colour</em></li>
406                             <li>fill-opacity <em>number</em></li>
407                             <li>font-size <em>number</em></li>
408                             <li>height <em>number</em></li>
409                             <li>opacity <em>number</em></li>
410                             <li>path <em>pathString</em></li>
411                             <li>r <em>number</em></li>
412                             <li>rotation <em>string</em></li>
413                             <li>rx <em>number</em></li>
414                             <li>ry <em>number</em></li>
415                             <li>scale <em>string</em></li>
416                             <li>stroke <em>colour</em></li>
417                             <li>stroke-opacity <em>number</em></li>
418                             <li>stroke-width <em>number</em></li>
419                             <li>translation <em>string</em></li>
420                             <li>width <em>number</em></li>
421                             <li>x <em>number</em></li>
422                             <li>y <em>number</em></li>
423                         </ul>
424                         <h4>Easing</h4>
425                         <p>
426                             For easing use built in functions or add your own by adding new functions to <code>Raphael.easing_formulas</code> object. Look at the <a href="easing.html">example of easing usage</a>.
427                         </p>
428                         <h4>Usage</h4>
429                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);</code>
430 <code>c.animate({cx: 20, r: 20}, 2000);</code>
431 <code>c.animate({cx: 20, r: 20}, 2000, "bounce");</code></pre>
432                         <h3 id="animateWith">
433                             animateWith
434                         </h3>
435                         <p>
436                             The same as <a href="#animate"><code>animate</code></a> method, but synchronise animation with another element.
437                         </p>
438                         <h4>Parameters</h4>
439                         <p>The same as for <a href="#animate"><code>animate</code></a> method, but first argument is an element.</p>
440                         <h4>Usage</h4>
441                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10),
442     r = paper.rect(10, 10, 10, 10);
443 c.animate({cx: 20, r: 20}, 2000);
444 r.animateWith(c, {x: 20}, 2000);</code></pre>
445                         <h3 id="animateAlong">
446                             animateAlong
447                         </h3>
448                         <div class="sample" id="along-sample"></div>
449                         <p>
450                             Animates element along the given path. As an option it could rotate element along the path.
451                         </p>
452                         <h4>Parameters</h4>
453                         <ol>
454                             <li>path <em>object</em> or <em>string</em> path element or path string along which the element will be animated</li>
455                             <li>ms <em>number</em> The duration of the animation, given in milliseconds.</li>
456                             <li>rotate <em>boolean</em> [optional] if true, element will be rotated along the path</li>
457                             <li>callback <em>function</em> [optional]</li>
458                         </ol>
459                         <h4>Usage</h4>
460                         <pre class="javascript code"><code>var p = r.path("M100,100c0,50 100-50 100,0c0,50 -100-50 -100,0z").attr({stroke: "#ddd"}),
461     e = r.ellipse(104, 100, 4, 4).attr({stroke: "none", fill: "#f00"}),
462     b = r.rect(0, 0, 620, 400).attr({stroke: "none", fill: "#000", opacity: 0}).click(function () {
463         e.attr({rx: 5, ry: 3}).animateAlong(p, 4000, true, function () {
464             e.attr({rx: 4, ry: 4});
465         });
466     });</code></pre>
467                         <h3 id="animateAlongBack">
468                             animateAlongBack
469                         </h3>
470                         <p>
471                             Similar to <a href="animateAlong"><code>animateAlong</code></a>. Animates element along the given path, starting from the end of it.
472                         </p>
473                         <h3 id="onAnimation">
474                             onAnimation
475                         </h3>
476                         <div class="sample" id="onanim-sample"></div>
477                         <p>
478                             Sets or resets the function that will be called on each stage of the animation.
479                         </p>
480                         <h4>Parameters</h4>
481                         <ol>
482                             <li>f <em>function</em> function that will be called on each stage of animation</li>
483                         </ol>
484                         <h4>Usage</h4>
485                         <pre class="javascript code"><code>var p = r.path("M10,50c0,50,80-50,80,0c0,50-80-50-80,0z"),
486     p2 = r.path(),
487     e = r.ellipse(10, 50, 4, 4).attr({stroke: "none", fill: "#f00"}).onAnimation(function () {
488         p2.attr({path: "M50,10L" + e.attr("cx") + "," + e.attr("cy")});
489     }),
490     b = r.rect(0, 0, 620, 400).attr({stroke: "none", fill: "#000", opacity: 0}).click(function () {
491         e.attr({rx: 5, ry: 3}).animateAlong(p, 4000, true, function () {
492             e.attr({rx: 4, ry: 4});
493         });
494     });</code></pre>
495                         <h3 id="getBBox">
496                             getBBox
497                         </h3>
498                         <p>
499                             Returns the dimensions of an element.
500                         </p>
501                         <h4>Usage</h4>
502                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);</code>
503 <code>var width = c.getBBox().width;</code></pre>
504                         <h3 id="toFront">
505                             toFront
506                         </h3>
507                         <p>
508                             Moves the element so it is the closest to the viewer’s eyes, on top of other elements.
509                         </p>
510                         <h4>Usage</h4>
511                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);</code>
512 <code>c.toFront();</code></pre>
513                         <h3 id="toBack">
514                             toBack
515                         </h3>
516                         <p>
517                             Moves the element so it is the furthest from the viewer’s eyes, behind other elements.
518                         </p>
519                         <h4>Usage</h4>
520                         <pre class="javascript code"><code>var c = paper.circle(10, 10, 10);</code>
521 <code>c.toBack();</code></pre>
522                         <h3 id="insertBefore">
523                             insertBefore
524                         </h3>
525                         <p>
526                             Inserts current object before the given one.
527                         </p>
528                         <h4>Usage</h4>
529                         <pre class="javascript code"><code>var r = paper.rect(10, 10, 10, 10);</code>
530 <code>var c = paper.circle(10, 10, 10);</code>
531 <code>c.insertBefore(r);</code></pre>
532                         <h3 id="insertAfter">
533                             insertAfter
534                         </h3>
535                         <p>
536                             Inserts current object after the given one.
537                         </p>
538                         <h4>Usage</h4>
539                         <pre class="javascript code"><code>var r = paper.rect(10, 10, 10, 10);
540 var c = paper.circle(10, 10, 10);
541 r.insertAfter(c);</code></pre>
542                         <h3 id="clone">
543                             clone
544                         </h3>
545                         <p>
546                             Returns a clone of the current element.
547                         </p>
548                         <h4>Usage</h4>
549                         <pre class="javascript code"><code>var r = paper.rect(10, 10, 10, 10);
550 var c = r.clone();</code></pre>
551                         <h2>Graphic Primitives</h2>
552                         <p>
553                             Methods of “paper” object, created with <code>Raphael</code> function call.
554                         </p>
555                         <h3 id="raphael">
556                             raphael
557                         </h3>
558                         <p>
559                             Internal reference to <code>Raphael</code> object. In case it is not available.
560                         </p>
561                         <h4>Usage</h4>
562                         <pre class="javascript code"><code>Raphael.el.red = function () {
563     var hsb = this.paper.raphael.rgb2hsb(this.attr("fill"));
564     hsb.h = 1;
565     this.attr({fill: this.paper.raphael.hsb2rgb(hsb).hex});
566 }</code></pre>
567                         <h3 id="getTotalLength">
568                             getTotalLength
569                         </h3>
570                         <p>
571                             Path specific method. Returns length of the path in pixels.
572                         </p>
573                         <h4>Usage</h4>
574                         <pre class="javascript code"><code>var p = r.path("M100,100c0,50 100-50 100,0c0,50 -100-50 -100,0z");
575     alert(p.getTotalLength());</code></pre>
576                         <h3 id="getPointAtLength">
577                             getPointAtLength
578                         </h3>
579                         <div class="sample" id="point-sample"></div>
580                         <p>
581                             Path specific method. Returns point description at given length.
582                         </p>
583                         <h4>Parameters</h4>
584                         <ol>
585                             <li>length <em>number</em> length in pixels from the beginining of the path to the point</li>
586                         </ol>
587                         <h4>Usage</h4>
588                         <pre class="javascript code"><code>var p = r.path("M10,50c0,50,80-50,80,0c0,50-80-50-80,0z");
589     var point = p.getPointAtLength(30);
590     r.circle(point.x, point.y, 3);</code></pre>
591                         <p>Returned object format:</p>
592                         <ul>
593                             <li>x – x coordinate of the point</li>
594                             <li>y – y coordinate of the point</li>
595                             <li>alpha – angle of the path at the point</li>
596                         </ul>
597                         <h3 id="getSubpath">
598                             getSubpath
599                         </h3>
600                         <div class="sample" id="subpath-sample"></div>
601                         <p>
602                             Path specific method. Returns the subpath string of a given path.
603                         </p>
604                         <h4>Parameters</h4>
605                         <ol>
606                             <li>from <em>number</em> length in pixels from the beginining of the path to the beginining of the subpath</li>
607                             <li>to <em>number</em> length in pixels from the beginining of the path to the end of the subpath</li>
608                         </ol>
609                         <h4>Usage</h4>
610                         <pre class="javascript code"><code>var p = r.path("M10,50c0,50,80-50,80,0c0,50-80-50-80,0z");
611     var path = p.getSubpath(10, 60);
612     r.path(path).attr({stroke: "#f00"});</code></pre>
613                         <h3 id="setSize">
614                             setSize
615                         </h3>
616                         <p>
617                             If you need to change dimensions of the canvas call this method
618                         </p>
619                         <h4>Parameters</h4>
620                         <ol>
621                             <li>width <em>number</em> new width of the canvas</li>
622                             <li>height <em>number</em> new height of the canvas</li>
623                         </ol>
624                         <h3 id="setWindow">
625                             setWindow
626                         </h3>
627                         <p>
628                             Should be called before main Raphael method. Sets which window should be used for drawing. Default is the current one. You need to use it if you want to draw inside <code>iframe</code>
629                         </p>
630                         <h4>Parameters</h4>
631                         <ol>
632                             <li>window <em>object</em></li>
633                         </ol>
634                         <h3 id="getRGB">
635                             getRGB
636                         </h3>
637                         <p>
638                             Parses passes string and returns an color object. Especially usefull for plug-in developers.
639                         </p>
640                         <h4>Parameters</h4>
641                         <ol>
642                             <li>color <em>string</em> Color in form acceptable by library</li>
643                         </ol>
644                         <h4>Usage</h4>
645                         <pre class="javascript code"><code>var stroke = Raphael.getRGB(circle.attr("stroke")).hex</code></pre>
646                         <h3 id="getColor">
647                             getColor
648                         </h3>
649                         <p>
650                             Returns a colour object for the next colour in spectrum
651                         </p>
652                         <h4>Parameters</h4>
653                         <ol>
654                             <li>value <em>number</em> brightness [optional]</li>
655                         </ol>
656                         <h4>Usage</h4>
657                         <pre class="javascript code"><code>var c = paper.path("M10,10L100,100").attr({stroke: Raphael.getColor()});</code></pre>
658                         <h3 id="getColor-reset">
659                             getColor.reset
660                         </h3>
661                         <p>
662                             Resets getColor function, so it will start from the beginning
663                         </p>
664                         <h3 id="registerFont">
665                             registerFont
666                         </h3>
667                         <p>
668                             Adds given font to the registered set of fonts for Raphaël. Should be used as an internal call from within Cufón’s font file. <a href="http://wiki.github.com/sorccu/cufon/about">More about Cufón and how to convert your font form TTF, OTF, etc to JavaScript file</a>. Returns original parameter, so it could be used with chaining.
669                         </p>
670                         <h4>Parameters</h4>
671                         <ol>
672                             <li>font <em>object</em> the font to register</li>
673                         </ol>
674                         <h4>Usage</h4>
675                         <pre class="javascript code"><code>Cufon.registerFont(Raphael.registerFont({…}))</code></pre>
676                         <h3 id="getFont">
677                             getFont
678                         </h3>
679                         <p>
680                             Finds font object in the registered fonts by given parameters. You could specify only one word from the font name, like “Myriad” for “Myriad Pro”.
681                         </p>
682                         <h4>Parameters</h4>
683                         <ol>
684                             <li>family <em>string</em> font family name or any word from it</li>
685                             <li>weight <em>string</em> weight of the font [optional]</li>
686                             <li>style <em>string</em> style of the font [optional]</li>
687                             <li>stretch <em>string</em> stretch of the font [optional]</li>
688                         </ol>
689                         <h4>Usage</h4>
690                         <pre class="javascript code"><code>paper.print(100, 100, "Test string", paper.getFont("Times", 800), 30);</code></pre>
691                         <h3 id="print">
692                             print
693                         </h3>
694                         <div class="sample" id="print-sample"></div>
695                         <p>
696                             Creates set of shapes to represent given font at given position with given size. Result of the method is set object (see <a href="#set">set</a>) which contains each letter as separate path object.
697                         </p>
698                         <h4>Parameters</h4>
699                         <ol>
700                             <li>x <em>number</em> x position of the text</li>
701                             <li>y <em>number</em> y position of the text</li>
702                             <li>text <em>string</em> text to print</li>
703                             <li>font <em>object</em> font object (see <a href="#getFont">getFont</a>)</li>
704                             <li>font_size <em>number</em> size of the font</li>
705                         </ol>
706                         <h4>Usage</h4>
707                         <pre class="javascript code"><code>var txt = r.print(10, 50, "print", r.getFont("Museo"), 30).attr({fill: "#fff"});
708 // following line will paint first letter in red
709 txt[0].attr({fill: "#f00"});</code></pre>
710                         <h3 id="plugins-canvas">
711                             Adding your own methods to canvas
712                         </h3>
713                         <p>
714                             You can add your own method to the canvas. For example if you want to draw pie chart, you can create your own pie chart function and ship it as a Raphaël plugin. To do this you need to extend Raphael.fn object. Please note that you can create your own namespaces inside fn object. Methods will be run in context of canvas anyway. You should alter fn object before Raphaël instance was created, otherwise it will take no effect.
715                         </p>
716                         <h4>Usage</h4>
717                         <pre class="javascript code"><code>Raphael.fn.arrow = function (x1, y1, x2, y2, size) {
718     return this.path( ... );
719 };
720 // or create namespace
721 Raphael.fn.mystuff = {
722     arrow: function () {…},
723     star: function () {…},
724     // etc…
725 };
726 var paper = Raphael(10, 10, 630, 480);
727 // then use it
728 paper.arrow(10, 10, 30, 30, 5).attr({fill: "#f00"});
729 paper.mystuff.arrow();
730 paper.mystuff.star();
731 </code></pre>
732                         <h3 id="plugins-elements">
733                             Adding your own methods to elements
734                         </h3>
735                         <p>
736                             You can add your own method to elements. This is usefull when you want to hack default functionality or want to wrap some common transformation or attributes in one method. In difference to canvas mathods, you can redefine element method at any time.
737                         </p>
738                         <h4>Usage</h4>
739                         <pre class="javascript code"><code>Raphael.el.red = function () {
740     this.attr({fill: "#f00"});
741 };
742 // then use it
743 paper.circle(100, 100, 20).red();
744 </code></pre>
745                         <h3 id="colour">
746                             Supported colour formats
747                         </h3>
748                         <p>
749                             You could specify colour in this formats:
750                         </p>
751                         <ul>
752                             <li>Colour name (“<samp>red</samp>”, “<samp>green</samp>”, “<samp>cornflowerblue</samp>”, etc)</li>
753                             <li>#••• — shortened HTML colour: (“<samp>#000</samp>”, “<samp>#fc0</samp>”, etc)</li>
754                             <li>#•••••• — full length HTML colour: (“<samp>#000000</samp>”, “<samp>#bd2300</samp>”)</li>
755                             <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<samp>rgb(200,&nbsp;100,&nbsp;0)</samp>”)</li>
756                             <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<samp>rgb(100%,&nbsp;175%,&nbsp;0%)</samp>”)</li>
757                             <li>rgba(•••, •••, •••, •••) — red, green and blue channels’ values: (“<samp>rgb(200,&nbsp;100,&nbsp;0, .5)</samp>”)</li>
758                             <li>rgba(•••%, •••%, •••%, •••%) — same as above, but in %: (“<samp>rgb(100%,&nbsp;175%,&nbsp;0%, 50%)</samp>”)</li>
759                             <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<samp>hsb(0.5,&nbsp;0.25,&nbsp;1)</samp>”)</li>
760                             <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
761                             <li>hsl(•••, •••, •••) — almost the same as hsb, see <a href="http://en.wikipedia.org/wiki/HSL_and_HSV" title="HSL and HSV - Wikipedia, the free encyclopedia">Wikipedia page</a></li>
762                             <li>hsl(•••%, •••%, •••%) — almost the same as hsb</li>
763                             <li>Optionally for hsb and hsl you could specify hue as a degree: “<samp>hsl(240deg,&nbsp;1,&nbsp;.5)</samp>” or, if you want to fancy, “<samp>hsl(240°,&nbsp;1,&nbsp;.5)</samp>”</li>
764                         </ul>
765                         <h4>Usage</h4>
766                         <pre class="javascript code"><code>paper.circle(100, 100, 20).attr({
767     fill: "hsb(1, 255, 200)",
768     stroke: "red"
769 });</code></pre>
770                         <h3 id="safari">
771                             safari
772                         </h3>
773                         <p>
774                             There is an inconvenient rendering bug is Safari (WebKit): sometimes the rendering should be forced. This method should help with dealing with this bug.
775                         </p>
776                         <h4>Usage</h4>
777                         <pre class="javascript code"><code>paper.safari();</code></pre>
778                         <h3 id="ninja-mode">
779                             “Ninja Mode”
780                         </h3>
781                         <p>
782                             If you want to leave no trace of Raphaël (Well, Raphaël creates only one global variable <code>Raphael</code>, but anyway.) You can use <code>ninja</code> method. Beware, that in this case plugins could stop working, because they are depending on global variable existance.
783                         </p>
784                         <h4>Usage</h4>
785                         <pre class="javascript code"><code>(function (local_raphael) {
786     var paper = local_raphael(10, 10, 320, 200);
787     …
788 })(Raphael.ninja());
789 </code></pre>
790                         <h3 id="events">
791                             Events
792                         </h3>
793                         <p>
794                             You can attach events to elements by using element.node and your favourite library (<samp>$(circle.node).click(…)</samp>) or you can use built-in methods:
795                         </p>
796                         <h4>Usage</h4>
797                         <pre class="javascript code"><code>element.click(function (event) {
798     this.attr({fill: "red"});
799 });
800 element.dblclick(function (event) {
801     this.attr({fill: "red"});
802 });
803 element.mousedown(function (event) {
804     this.attr({fill: "red"});
805 });
806 element.mousemove(function (event) {
807     this.attr({fill: "red"});
808 });
809 element.mouseout(function (event) {
810     this.attr({fill: "red"});
811 });
812 element.mouseover(function (event) {
813     this.attr({fill: "red"});
814 });
815 element.mouseup(function (event) {
816     this.attr({fill: "red"});
817 });
818 element.hover(function (event) {
819     this.attr({fill: "red"});
820 }, function (event) {
821     this.attr({fill: "black"});
822 });</code></pre>
823                         <p>
824                             To unbind events use the same method names with “un” prefix, i.e. <samp>element.unclick(f);</samp>
825                         </p>
826                         <h3 id="drag-n-drop">
827                             Drag ’n’ Drop
828                         </h3>
829                         <p>
830                             To make element “draggable” you need to call method <code>drag</code> on element.
831                         </p>
832                         <h4>Parameters</h4>
833                         <ol>
834                             <li>onmove <em>function</em> event handler for moving</li>
835                             <li>onstart <em>function</em> event handler for start</li>
836                             <li>onend <em>function</em> event handler for end of the drag</li>
837                         </ol>
838                         <h4>Usage</h4>
839                         <pre class="javascript code"><code>var c = R.circle(100, 100, 50).attr({
840     fill: "hsb(.8, 1, 1)",
841     stroke: "none",
842     opacity: .5
843 });
844 var start = function () {
845     // storing original coordinates
846     this.ox = this.attr("cx");
847     this.oy = this.attr("cy");
848     this.attr({opacity: 1});
849 },
850 move = function (dx, dy) {
851     // move will be called with dx and dy
852     this.attr({cx: this.ox + dx, cy: this.oy + dy});
853 },
854 up = function () {
855     // restoring state
856     this.attr({opacity: .5});
857 };
858 c.drag(move, start, up);</code></pre>
859                         <p>
860                             To unbind drag use the <samp>undrag</samp> method.
861                         </p>
862                     </div>
863                     <div id="column-2">
864                         <h2>
865                             <a href="index.html">Home</a>
866                         </h2>
867                         <h2>
868                             Contents
869                         </h2>
870                         <ul id="contents">
871                             <li>
872                                 <a href="#Raphael"><code>Raphael</code></a>
873                             </li>
874                             <li>
875                                 <a href="#circle"><code>circle</code></a>
876                             </li>
877                             <li>
878                                 <a href="#rect"><code>rect</code></a>
879                             </li>
880                             <li>
881                                 <a href="#ellipse"><code>ellipse</code></a>
882                             </li>
883                             <li>
884                                 <a href="#image"><code>image</code></a>
885                             </li>
886                             <li>
887                                 <a href="#set"><code>set</code></a>
888                             </li>
889                             <li>
890                                 <a href="#text"><code>text</code></a>
891                             </li>
892                             <li>
893                                 <a href="#path"><code>path</code></a>
894                             </li>
895                             <li>
896                                 <a href="#clear"><code>clear</code></a>
897                             </li>
898                             <li>
899                                 <a href="#node"><code>node</code></a>
900                             </li>
901                             <li>
902                                 <a href="#paper"><code>paper</code></a>
903                             </li>
904                             <li>
905                                 <a href="#remove"><code>remove</code></a>
906                             </li>
907                             <li>
908                                 <a href="#hide"><code>hide</code></a>
909                             </li>
910                             <li>
911                                 <a href="#show"><code>show</code></a>
912                             </li>
913                             <li>
914                                 <a href="#rotate"><code>rotate</code></a>
915                             </li>
916                             <li>
917                                 <a href="#translate"><code>translate</code></a>
918                             </li>
919                             <li>
920                                 <a href="#scale"><code>scale</code></a>
921                             </li>
922                             <li>
923                                 <a href="#attr"><code>attr</code></a>
924                             </li>
925                             <li>
926                                 <a href="#animate"><code>animate</code></a>
927                             </li>
928                             <li>
929                                 <a href="#animateWith"><code>animateWith</code></a>
930                             </li>
931                             <li>
932                                 <a href="#animateAlong"><code>animateAlong</code></a>
933                             </li>
934                             <li>
935                                 <a href="#animateAlongBack"><code>animateAlongBack</code></a>
936                             </li>
937                             <li>
938                                 <a href="#getBBox"><code>getBBox</code></a>
939                             </li>
940                             <li>
941                                 <a href="#toFront"><code>toFront</code></a>
942                             </li>
943                             <li>
944                                 <a href="#toBack"><code>toBack</code></a>
945                             </li>
946                             <li>
947                                 <a href="#insertBefore"><code>insertBefore</code></a>
948                             </li>
949                             <li>
950                                 <a href="#insertAfter"><code>insertAfter</code></a>
951                             </li>
952                             <li>
953                                 <a href="#clone"><code>clone</code></a>
954                             </li>
955                             <li>
956                                 <a href="#raphael"><code>raphael</code></a>
957                             </li>
958                             <li>
959                                 <a href="#getTotalLength"><code>getTotalLength</code></a>
960                             </li>
961                             <li>
962                                 <a href="#getPointAtLength"><code>getPointAtLength</code></a>
963                             </li>
964                             <li>
965                                 <a href="#getSubpath"><code>getSubpath</code></a>
966                             </li>
967                             <li>
968                                 <a href="#setSize"><code>setSize</code></a>
969                             </li>
970                             <li>
971                                 <a href="#setWindow"><code>setWindow</code></a>
972                             </li>
973                             <li>
974                                 <a href="#getRGB"><code>getRGB</code></a>
975                             </li>
976                             <li>
977                                 <a href="#getColor"><code>getColor</code></a>
978                             </li>
979                             <li>
980                                 <a href="#getColor-reset"><code>getColor.reset</code></a>
981                             </li>
982                             <li>
983                                 <a href="#registerFont"><code>registerFont</code></a>
984                             </li>
985                             <li>
986                                 <a href="#getFont"><code>getFont</code></a>
987                             </li>
988                             <li>
989                                 <a href="#print"><code>print</code></a>
990                             </li>
991                             <li>
992                                 <a href="#plugins-canvas">Adding your own methods to canvas</a>
993                             </li>
994                             <li>
995                                 <a href="#plugins-elements">Adding your own methods to elements</a>
996                             </li>
997                             <li>
998                                 <a href="#colour">Supported colour formats</a>
999                             </li>
1000                             <li>
1001                                 <a href="#safari">safari</a>
1002                             </li>
1003                             <li>
1004                                 <a href="#ninja-mode">“Ninja Mode”</a>
1005                             </li>
1006                             <li>
1007                                 <a href="#events">Events</a>
1008                             </li>
1009                         </ul>
1010                     </div>
1011                     <div  id="footer">
1012                         <h3 id="copyright">
1013                             <a href="http://www.opensource.org/licenses/mit-license.php" title="MIT License" rel="license">Some Rights Reserved</a> by <a href="http://dmitry.baranovskiy.com/">Dmitry Baranovskiy</a>
1014                         </h3>
1015                         <h3 id="font">
1016                             Logo by <a href="http://wasabicube.com/">Wasabicube</a>
1017                         </h3>
1018                     </div>
1019         </div>
1020         <script src="raphael.js" type="text/javascript" charset="utf-8"></script>
1021         <script src="syntax.js" type="text/javascript" charset="utf-8"></script>
1022         <script src="museo.js" type="text/javascript" charset="utf-8"></script>
1023         <script src="site.js" type="text/javascript" charset="utf-8"></script>
1024         <script type="text/javascript">
1025         var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
1026         document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
1027         </script>
1028         <script type="text/javascript">
1029         var pageTracker = _gat._getTracker("UA-616618-3");
1030         pageTracker._trackPageview();
1031         </script>
1032     </body>
1033 </html>