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
348dae15
authored
Dec 17, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added clone method to reference.
parent
33e7f599
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
reference.html
+16
-5
No files found.
reference.html
View file @
348dae15
...
...
@@ -14,8 +14,6 @@
<link
rel=
"stylesheet"
type=
"text/css"
media=
"print"
href=
"print.css"
>
<link
rel=
"shortcut icon"
href=
"/favicon16.png"
type=
"image/x-icon"
>
<link
media=
"only screen and (max-device-width: 480px)"
href=
"iphone.css"
type=
"text/css"
rel=
"stylesheet"
>
<script
src=
"jquery.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<script
src=
"dmitry.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<script
src=
"raphael.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<script
src=
"museo.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
...
...
@@ -338,9 +336,18 @@ c.attr({fill: "90-#fff-#000", "stroke-dasharray": "-..", "clip-rect": "10, 10, 1
Inserts current object after the given one.
</p>
<h4>
Usage
</h4>
<pre
class=
"javascript code"
><code>
var r = paper.rect(10, 10, 10, 10);
</code>
<code>
var c = paper.circle(10, 10, 10);
</code>
<code>
r.insertAfter(c);
</code></pre>
<pre
class=
"javascript code"
><code>
var r = paper.rect(10, 10, 10, 10);
var c = paper.circle(10, 10, 10);
r.insertAfter(c);
</code></pre>
<h3
id=
"clone"
>
clone
</h3>
<p>
Returns a clone of the current element.
</p>
<h4>
Usage
</h4>
<pre
class=
"javascript code"
><code>
var r = paper.rect(10, 10, 10, 10);
var c = r.clone();
</code></pre>
<h2>
Graphic Primitives
</h2>
<p>
Methods of “paper” object, created with
<code>
Raphael
</code>
function call.
...
...
@@ -694,6 +701,9 @@ paper.circle(100, 100, 20).red();
<a
href=
"#insertAfter"
><code>
insertAfter
</code></a>
</li>
<li>
<a
href=
"#clone"
><code>
clone
</code></a>
</li>
<li>
<a
href=
"#raphael"
><code>
raphael
</code></a>
</li>
<li>
...
...
@@ -770,6 +780,7 @@ paper.circle(100, 100, 20).red();
</div>
</div>
</div>
<script
src=
"syntax.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<script
type=
"text/javascript"
>
var
gaJsHost
=
((
"https:"
==
document
.
location
.
protocol
)
?
"https://ssl."
:
"http://www."
);
document
.
write
(
unescape
(
"%3Cscript src='"
+
gaJsHost
+
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"
));
...
...
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