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
2fcf47ba
authored
Dec 16, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding clone method and fixing parameterless attr() call.
parent
39783320
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
raphael-min.js
+0
-0
raphael.js
+14
-3
No files found.
raphael-min.js
View file @
2fcf47ba
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
2fcf47ba
...
@@ -1404,6 +1404,10 @@ window.Raphael = (function () {
...
@@ -1404,6 +1404,10 @@ window.Raphael = (function () {
for
(
var
i
in
this
.
attrs
)
if
(
this
.
attrs
[
has
](
i
))
{
for
(
var
i
in
this
.
attrs
)
if
(
this
.
attrs
[
has
](
i
))
{
res
[
i
]
=
this
.
attrs
[
i
];
res
[
i
]
=
this
.
attrs
[
i
];
}
}
this
.
_
.
rt
.
deg
&&
(
res
.
rotation
=
this
.
rotate
());
(
this
.
_
.
sx
!=
1
||
this
.
_
.
sy
!=
1
)
&&
(
res
.
scale
=
this
.
scale
());
delete
res
.
translation
;
res
.
gradient
&&
res
.
fill
==
"none"
&&
(
res
.
fill
=
res
.
gradient
)
&&
delete
res
.
gradient
;
return
res
;
return
res
;
}
}
if
(
arguments
[
length
]
==
1
&&
R
.
is
(
arguments
[
0
],
"string"
))
{
if
(
arguments
[
length
]
==
1
&&
R
.
is
(
arguments
[
0
],
"string"
))
{
...
@@ -2108,6 +2112,10 @@ window.Raphael = (function () {
...
@@ -2108,6 +2112,10 @@ window.Raphael = (function () {
for
(
var
i
in
this
.
attrs
)
if
(
this
.
attrs
[
has
](
i
))
{
for
(
var
i
in
this
.
attrs
)
if
(
this
.
attrs
[
has
](
i
))
{
res
[
i
]
=
this
.
attrs
[
i
];
res
[
i
]
=
this
.
attrs
[
i
];
}
}
this
.
_
.
rt
.
deg
&&
(
res
.
rotation
=
this
.
rotate
());
(
this
.
_
.
sx
!=
1
||
this
.
_
.
sy
!=
1
)
&&
(
res
.
scale
=
this
.
scale
());
delete
res
.
translation
;
res
.
gradient
&&
res
.
fill
==
"none"
&&
(
res
.
fill
=
res
.
gradient
)
&&
delete
res
.
gradient
;
return
res
;
return
res
;
}
}
if
(
arguments
[
length
]
==
1
&&
R
.
is
(
arguments
[
0
],
"string"
))
{
if
(
arguments
[
length
]
==
1
&&
R
.
is
(
arguments
[
0
],
"string"
))
{
...
@@ -2468,7 +2476,7 @@ window.Raphael = (function () {
...
@@ -2468,7 +2476,7 @@ window.Raphael = (function () {
return
new
Set
(
itemsArray
);
return
new
Set
(
itemsArray
);
};
};
paper
.
setSize
=
setSize
;
paper
.
setSize
=
setSize
;
function
scaleToString
()
{
function
x_y
()
{
return
this
.
x
+
S
+
this
.
y
;
return
this
.
x
+
S
+
this
.
y
;
};
};
Element
[
proto
].
scale
=
function
(
x
,
y
,
cx
,
cy
)
{
Element
[
proto
].
scale
=
function
(
x
,
y
,
cx
,
cy
)
{
...
@@ -2476,7 +2484,7 @@ window.Raphael = (function () {
...
@@ -2476,7 +2484,7 @@ window.Raphael = (function () {
return
{
return
{
x
:
this
.
_
.
sx
,
x
:
this
.
_
.
sx
,
y
:
this
.
_
.
sy
,
y
:
this
.
_
.
sy
,
toString
:
scaleToString
toString
:
x_y
};
};
}
}
y
=
y
||
x
;
y
=
y
||
x
;
...
@@ -2598,6 +2606,9 @@ window.Raphael = (function () {
...
@@ -2598,6 +2606,9 @@ window.Raphael = (function () {
}
}
return
this
;
return
this
;
};
};
Element
[
proto
].
clone
=
function
()
{
return
this
.
paper
[
this
.
type
]().
attr
(
this
.
attr
());
};
// animation easing formulas
// animation easing formulas
R
.
easing_formulas
=
{
R
.
easing_formulas
=
{
...
@@ -2755,7 +2766,7 @@ window.Raphael = (function () {
...
@@ -2755,7 +2766,7 @@ window.Raphael = (function () {
},
},
translate
=
function
(
x
,
y
)
{
translate
=
function
(
x
,
y
)
{
if
(
x
==
null
)
{
if
(
x
==
null
)
{
return
{
x
:
this
.
_
.
tx
,
y
:
this
.
_
.
ty
};
return
{
x
:
this
.
_
.
tx
,
y
:
this
.
_
.
ty
,
toString
:
x_y
};
}
}
this
.
_
.
tx
+=
+
x
;
this
.
_
.
tx
+=
+
x
;
this
.
_
.
ty
+=
+
y
;
this
.
_
.
ty
+=
+
y
;
...
...
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