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
60fa8cbc
authored
Feb 06, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add plug-ins functionality.
parent
e0824dd2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
24 deletions
+15
-24
raphael-svg.js
+5
-0
raphael-vml.js
+6
-23
raphael.js
+4
-1
No files found.
raphael-svg.js
View file @
60fa8cbc
...
@@ -659,6 +659,11 @@
...
@@ -659,6 +659,11 @@
container
[
prop
]
=
R
.
_
.
paper
[
prop
];
container
[
prop
]
=
R
.
_
.
paper
[
prop
];
}
}
}
}
for
(
var
prop
in
R
.
fn
)
{
if
(
!
container
[
prop
])
{
container
[
prop
]
=
R
.
fn
[
prop
];
}
}
container
.
clear
();
container
.
clear
();
return
container
;
return
container
;
};
};
...
...
raphael-vml.js
View file @
60fa8cbc
...
@@ -698,29 +698,7 @@
...
@@ -698,29 +698,7 @@
return
res
;
return
res
;
};
};
R
.
_
.
theGroup
=
function
(
vml
)
{
R
.
_
.
theGroup
=
function
(
vml
)
{
var
el
=
document
.
createElement
(
"rvml:group"
),
els
=
el
.
style
;
return
this
;
els
.
position
=
"absolute"
;
els
.
left
=
0
;
els
.
top
=
0
;
els
.
width
=
vml
.
width
;
els
.
height
=
vml
.
height
;
if
(
vml
.
canvas
)
{
vml
.
canvas
.
appendChild
(
el
);
}
var
res
=
new
Element
(
el
,
el
,
vml
);
for
(
var
f
in
vml
)
{
if
(
f
.
charAt
(
0
)
!=
"_"
&&
typeof
vml
[
f
]
==
"function"
)
{
res
[
f
]
=
(
function
(
f
)
{
return
function
()
{
var
e
=
vml
[
f
].
apply
(
vml
,
arguments
);
el
.
appendChild
(
e
[
0
].
parentNode
);
return
e
;
};
})(
f
);
}
}
res
.
type
=
"group"
;
return
res
;
};
};
R
.
_create
=
function
()
{
R
.
_create
=
function
()
{
// container, width, height
// container, width, height
...
@@ -803,6 +781,11 @@
...
@@ -803,6 +781,11 @@
for
(
var
prop
in
R
.
_
.
paper
)
{
for
(
var
prop
in
R
.
_
.
paper
)
{
container
[
prop
]
=
R
.
_
.
paper
[
prop
];
container
[
prop
]
=
R
.
_
.
paper
[
prop
];
}
}
for
(
var
prop
in
R
.
fn
)
{
if
(
!
container
[
prop
])
{
container
[
prop
]
=
R
.
fn
[
prop
];
}
}
container
.
clear
=
function
()
{
container
.
clear
=
function
()
{
var
todel
=
[];
var
todel
=
[];
for
(
var
i
=
0
,
ii
=
r
.
childNodes
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
r
.
childNodes
.
length
;
i
<
ii
;
i
++
)
{
...
...
raphael.js
View file @
60fa8cbc
...
@@ -16,6 +16,7 @@ function Raphael() {
...
@@ -16,6 +16,7 @@ function Raphael() {
paper
:
{},
paper
:
{},
element
:
{}
element
:
{}
};
};
R
.
fn
=
{};
var
availableAttrs
=
{
cx
:
0
,
cy
:
0
,
fill
:
"#fff"
,
"fill-opacity"
:
1
,
font
:
'16px "Arial"'
,
"font-family"
:
'"Arial"'
,
"font-size"
:
"16"
,
gradient
:
0
,
height
:
0
,
opacity
:
1
,
path
:
"M0,0"
,
r
:
0
,
rotation
:
0
,
rx
:
0
,
ry
:
0
,
scale
:
"1 1"
,
stroke
:
"#000"
,
"stroke-dasharray"
:
""
,
"stroke-linecap"
:
"butt"
,
"stroke-linejoin"
:
"butt"
,
"stroke-miterlimit"
:
0
,
"stroke-opacity"
:
1
,
"stroke-width"
:
1
,
translation
:
"0 0"
,
width
:
0
,
x
:
0
,
y
:
0
},
var
availableAttrs
=
{
cx
:
0
,
cy
:
0
,
fill
:
"#fff"
,
"fill-opacity"
:
1
,
font
:
'16px "Arial"'
,
"font-family"
:
'"Arial"'
,
"font-size"
:
"16"
,
gradient
:
0
,
height
:
0
,
opacity
:
1
,
path
:
"M0,0"
,
r
:
0
,
rotation
:
0
,
rx
:
0
,
ry
:
0
,
scale
:
"1 1"
,
stroke
:
"#000"
,
"stroke-dasharray"
:
""
,
"stroke-linecap"
:
"butt"
,
"stroke-linejoin"
:
"butt"
,
"stroke-miterlimit"
:
0
,
"stroke-opacity"
:
1
,
"stroke-width"
:
1
,
translation
:
"0 0"
,
width
:
0
,
x
:
0
,
y
:
0
},
availableAnimAttrs
=
{
cx
:
"number"
,
cy
:
"number"
,
fill
:
"colour"
,
"fill-opacity"
:
"number"
,
"font-size"
:
"number"
,
height
:
"number"
,
opacity
:
"number"
,
path
:
"path"
,
r
:
"number"
,
rotation
:
"number"
,
rx
:
"number"
,
ry
:
"number"
,
scale
:
"csv"
,
stroke
:
"colour"
,
"stroke-opacity"
:
"number"
,
"stroke-width"
:
"number"
,
translation
:
"csv"
,
width
:
"number"
,
x
:
"number"
,
y
:
"number"
};
availableAnimAttrs
=
{
cx
:
"number"
,
cy
:
"number"
,
fill
:
"colour"
,
"fill-opacity"
:
"number"
,
"font-size"
:
"number"
,
height
:
"number"
,
opacity
:
"number"
,
path
:
"path"
,
r
:
"number"
,
rotation
:
"number"
,
rx
:
"number"
,
ry
:
"number"
,
scale
:
"csv"
,
stroke
:
"colour"
,
"stroke-opacity"
:
"number"
,
"stroke-width"
:
"number"
,
translation
:
"csv"
,
width
:
"number"
,
x
:
"number"
,
y
:
"number"
};
R
.
_
.
paper
.
circle
=
function
(
x
,
y
,
r
)
{
R
.
_
.
paper
.
circle
=
function
(
x
,
y
,
r
)
{
...
@@ -738,7 +739,9 @@ function Raphael() {
...
@@ -738,7 +739,9 @@ function Raphael() {
var
script
=
document
.
getElementsByTagName
(
"script"
),
var
script
=
document
.
getElementsByTagName
(
"script"
),
newscript
=
document
.
createElement
(
"script"
);
newscript
=
document
.
createElement
(
"script"
);
script
=
script
[
script
.
length
-
1
];
script
=
script
[
script
.
length
-
1
];
var
path
=
script
.
src
.
match
(
/.*
\/
/
);
path
=
path
?
path
[
0
]
:
""
;
newscript
.
type
=
"text/javascript"
;
newscript
.
type
=
"text/javascript"
;
newscript
.
src
=
window
.
SVGAngle
?
"raphael-svg.js"
:
"raphael-vml.js"
;
newscript
.
src
=
path
+
(
window
.
SVGAngle
?
"raphael-svg.js"
:
"raphael-vml.js"
)
;
script
.
parentNode
.
appendChild
(
newscript
);
script
.
parentNode
.
appendChild
(
newscript
);
})(
Raphael
);
})(
Raphael
);
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