Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c9efb352
authored
Jan 08, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added small description of animate method
parent
e3f02484
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
reference.html
+18
-0
No files found.
reference.html
View file @
c9efb352
...
...
@@ -157,6 +157,21 @@
<pre
class=
"javascript code"
><code>
var c = paper.circle(10, 10, 10);
</code>
<code>
c.attr("fill", "black");
</code>
<code>
c.attr({fill: "#000", stroke: "#f00", opacity: 0.5});
</code></pre>
<h3
id=
"animate"
>
animate
</h3>
<p>
Linearly changes attribute from current to specified in given amount of milliseconds.
</p>
<h4>
Parameters
</h4>
<ol>
<li>
newAttrs
<em>
object
</em></li>
<li>
ms
<em>
number
</em></li>
<li>
callback
<em>
function
</em>
[optional]
</li>
</ol>
<h4>
Usage
</h4>
<pre
class=
"javascript code"
><code>
var c = paper.circle(10, 10, 10);
</code>
<code>
c.animate({cx: 20, r: 20}, 2000);
</code></pre>
<h3
id=
"getBBox"
>
getBBox
</h3>
...
...
@@ -421,6 +436,9 @@
<a
href=
"reference.html#attr"
><code>
attr
</code></a>
</li>
<li>
<a
href=
"reference.html#attr"
><code>
animate
</code></a>
</li>
<li>
<a
href=
"reference.html#getBBox"
><code>
getBBox
</code></a>
</li>
<li>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment