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
128aa56e
authored
Mar 10, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added multiline text
parent
1dc96df7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
11 deletions
+45
-11
raphael.js
+45
-11
No files found.
raphael.js
View file @
128aa56e
...
@@ -827,12 +827,12 @@ var Raphael = (function () {
...
@@ -827,12 +827,12 @@ var Raphael = (function () {
case
"stroke-dasharray"
:
case
"stroke-dasharray"
:
addDashes
(
o
,
value
);
addDashes
(
o
,
value
);
break
;
break
;
case
"text"
:
//
case "text":
if
(
o
.
type
==
"text"
)
{
//
if (o.type == "text") {
o
.
node
.
childNodes
.
length
&&
o
.
node
.
removeChild
(
o
.
node
.
firstChild
);
//
o.node.childNodes.length && o.node.removeChild(o.node.firstChild);
o
.
node
.
appendChild
(
doc
.
createTextNode
(
value
));
//
o.node.appendChild(doc.createTextNode(value));
}
//
}
break
;
//
break;
case
"rotation"
:
case
"rotation"
:
o
.
rotate
(
value
,
true
);
o
.
rotate
(
value
,
true
);
break
;
break
;
...
@@ -919,6 +919,7 @@ var Raphael = (function () {
...
@@ -919,6 +919,7 @@ var Raphael = (function () {
break
;
break
;
}
}
}
}
tuneText
(
o
,
params
);
};
};
var
Element
=
function
(
node
,
svg
)
{
var
Element
=
function
(
node
,
svg
)
{
var
X
=
0
,
var
X
=
0
,
...
@@ -950,7 +951,7 @@ var Raphael = (function () {
...
@@ -950,7 +951,7 @@ var Raphael = (function () {
case
"rect"
:
case
"rect"
:
case
"image"
:
case
"image"
:
case
"text"
:
case
"text"
:
this
.
attr
({
x
:
this
.
attrs
.
x
+
x
,
y
:
this
.
attrs
.
y
+
y
});
this
.
attr
({
x
:
this
.
attrs
.
x
+
+
x
,
y
:
this
.
attrs
.
y
+
+
y
});
break
;
break
;
case
"path"
:
case
"path"
:
var
path
=
pathToRelative
(
this
.
attrs
.
path
);
var
path
=
pathToRelative
(
this
.
attrs
.
path
);
...
@@ -1137,14 +1138,47 @@ var Raphael = (function () {
...
@@ -1137,14 +1138,47 @@ var Raphael = (function () {
res
.
type
=
"image"
;
res
.
type
=
"image"
;
return
res
;
return
res
;
};
};
var
leading
=
1.2
;
var
tuneText
=
function
(
element
,
params
)
{
if
(
element
.
type
!=
"text"
)
{
return
;
}
var
fontSize
=
element
.
node
.
firstChild
?
parseInt
(
doc
.
defaultView
.
getComputedStyle
(
element
.
node
.
firstChild
,
""
).
getPropertyValue
(
"font-size"
),
10
)
:
10
;
var
height
=
0
;
if
(
"text"
in
params
)
{
while
(
element
.
node
.
firstChild
)
{
element
.
node
.
removeChild
(
element
.
node
.
firstChild
);
}
var
texts
=
(
params
.
text
+
""
).
split
(
"\n"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
var
tspan
=
doc
.
createElementNS
(
element
.
svg
.
svgns
,
"tspan"
);
i
&&
tspan
.
setAttribute
(
"dy"
,
fontSize
*
leading
);
tspan
.
setAttribute
(
"x"
,
element
.
attrs
.
x
);
tspan
.
appendChild
(
doc
.
createTextNode
(
texts
[
i
]));
element
.
node
.
appendChild
(
tspan
);
height
+=
fontSize
*
leading
;
}
}
else
if
(
"font"
in
params
||
"font-size"
in
params
)
{
var
texts
=
element
.
node
.
getElementsByTagName
(
"tspan"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
i
&&
texts
[
i
].
setAttribute
(
"dy"
,
fontSize
*
leading
);
height
+=
fontSize
*
leading
;
}
}
height
-=
fontSize
*
(
leading
-
1
);
var
dif
=
height
/
2
-
fontSize
;
if
(
dif
)
{
element
.
node
.
setAttribute
(
"y"
,
element
.
attrs
.
y
-
dif
);
}
setTimeout
(
function
()
{
});
};
var
theText
=
function
(
svg
,
x
,
y
,
text
)
{
var
theText
=
function
(
svg
,
x
,
y
,
text
)
{
var
el
=
doc
.
createElementNS
(
svg
.
svgns
,
"text"
);
var
el
=
doc
.
createElementNS
(
svg
.
svgns
,
"text"
);
el
.
setAttribute
(
"x"
,
x
);
el
.
setAttribute
(
"x"
,
x
);
el
.
setAttribute
(
"y"
,
y
);
el
.
setAttribute
(
"y"
,
y
);
el
.
setAttribute
(
"text-anchor"
,
"middle"
);
el
.
setAttribute
(
"text-anchor"
,
"middle"
);
if
(
text
)
{
el
.
appendChild
(
doc
.
createTextNode
(
text
));
}
if
(
svg
.
canvas
)
{
if
(
svg
.
canvas
)
{
svg
.
canvas
.
appendChild
(
el
);
svg
.
canvas
.
appendChild
(
el
);
}
}
...
@@ -1153,7 +1187,7 @@ var Raphael = (function () {
...
@@ -1153,7 +1187,7 @@ var Raphael = (function () {
res
.
attrs
.
x
=
x
;
res
.
attrs
.
x
=
x
;
res
.
attrs
.
y
=
y
;
res
.
attrs
.
y
=
y
;
res
.
type
=
"text"
;
res
.
type
=
"text"
;
setFillAndStroke
(
res
,
{
font
:
'10px "Arial"'
,
stroke
:
"none"
,
fill
:
"#000"
});
setFillAndStroke
(
res
,
{
font
:
'10px "Arial"'
,
stroke
:
"none"
,
fill
:
"#000"
,
text
:
text
});
return
res
;
return
res
;
};
};
var
theGroup
=
function
(
svg
)
{
var
theGroup
=
function
(
svg
)
{
...
...
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